Skip to content

Commit 93697a2

Browse files
nschonniconceptdev
authored andcommitted
fix: MD037/no-space-in-emphasis (#2265)
Spaces inside emphasis markers
1 parent 416c234 commit 93697a2

File tree

6 files changed

+51
-53
lines changed

6 files changed

+51
-53
lines changed

.markdownlint.json

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
},
2727
"MD034": false,
2828
"MD036": false,
29-
"MD037": false,
3029
"MD040": false,
3130
"MD041": false,
3231
"MD045": false,

docs/graphics-games/monogame/3d/part3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ The final line of code combines the two matrices into one:
346346
Matrix combined = translationMatrix * rotationMatrix;
347347
```
348348

349-
This is referred to as matrix multiplication, which works slightly different than regular multiplication. The *commutative property of multiplication* states that the order of numbers in a multiplication operation does not change the result. That is, 3 * 4 is equivalent to 4 * 3. Matrix multiplication differs in that it is not commutative. That is, the above line can be read as "Apply the translationMatrix to move the model, then rotate everything by applying the rotationMatrix". We could visualize the way that the above line affects the position and rotation as follows:
349+
This is referred to as matrix multiplication, which works slightly different than regular multiplication. The *commutative property of multiplication* states that the order of numbers in a multiplication operation does not change the result. That is, 3 \* 4 is equivalent to 4 \* 3. Matrix multiplication differs in that it is not commutative. That is, the above line can be read as "Apply the translationMatrix to move the model, then rotate everything by applying the rotationMatrix". We could visualize the way that the above line affects the position and rotation as follows:
350350

351351
![](part3-images/image8.png "A visualization pf the way that the above line affects the position and rotation")
352352

docs/ios/troubleshooting/mtouch-errors.md

+41-41
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ An error occurred while parsing the command line arguments. Please verify that t
9999

100100
<a name="MT0011" />
101101

102-
### MT0011: * was built against a more recent runtime (*) than MonoTouch supports.
102+
### MT0011: \* was built against a more recent runtime (\*) than MonoTouch supports.
103103

104104
This warning is typically reported because the project has a reference to a class library that was not built using the Xamarin.iOS BCL.
105105

@@ -121,7 +121,7 @@ SGen (--sgen) must be enabled if profiling (--profiling) is enabled.
121121

122122
<a name="MT0014" />
123123

124-
### MT0014: The iOS * SDK does not support building applications targeting *.
124+
### MT0014: The iOS \* SDK does not support building applications targeting \*.
125125

126126
This can happen in the following circumstances:
127127

@@ -199,7 +199,7 @@ The executable assembly's name and the application's name can't match the name o
199199

200200
<a name="MT0026" />
201201

202-
### MT0026: Could not parse the command line argument '*': *
202+
### MT0026: Could not parse the command line argument '\*': \*
203203

204204
<a name="MT0027" />
205205

@@ -243,7 +243,7 @@ To fix this either change 'Application Name' in the project's Build/iOS Applicat
243243

244244
<a name="MT0036" />
245245

246-
### MT0036: Cannot launch a * simulator for a * app. Please enable the correct architecture(s) in your project's iOS Build options (Advanced page).
246+
### MT0036: Cannot launch a \* simulator for a \* app. Please enable the correct architecture(s) in your project's iOS Build options (Advanced page).
247247

248248
<a name="MT0037" />
249249

@@ -295,15 +295,15 @@ Install a newer Xcode version.
295295

296296
<a name="MT0049" />
297297

298-
### MT0049: *.framework is supported only if deployment target is 8.0 or later. * features might not work correctly.
298+
### MT0049: \*.framework is supported only if deployment target is 8.0 or later. \* features might not work correctly.
299299

300300
The specified framework is not supported in the iOS version the deployment target refers to. Either update the deployment target to a newer iOS version, or remove usage of the specified framework from the app.
301301

302302
<!-- MT0050 is not reported anymore -->
303303

304304
<a name="MT0051" />
305305

306-
### MT0051: Xamarin.iOS * requires Xcode 5.0 or later. The current Xcode version (found in *) is *.
306+
### MT0051: Xamarin.iOS \* requires Xcode 5.0 or later. The current Xcode version (found in \*) is \*.
307307

308308
Install a newer Xcode.
309309

@@ -317,7 +317,7 @@ No action was specified for mtouch.
317317

318318
<a name="MT0054" />
319319

320-
### MT0054: Unable to canonicalize the path '*': *
320+
### MT0054: Unable to canonicalize the path '\*': \*
321321

322322
This is an internal error. If you see this error, please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
323323

@@ -379,7 +379,7 @@ Xamarin.iOS only supports embedded frameworks when using the Unified API; please
379379

380380
<a name="MT0065" />
381381

382-
### MT0065: Xamarin.iOS only supports embedded frameworks when deployment target is at least 8.0 (current deployment target: * embedded frameworks: *)
382+
### MT0065: Xamarin.iOS only supports embedded frameworks when deployment target is at least 8.0 (current deployment target: \* embedded frameworks: \*)
383383

384384
Xamarin.iOS only supports embedded frameworks when the deployment target is at least 8.0 (because earlier versions of iOS does not support embedded frameworks).
385385

@@ -427,23 +427,23 @@ This usually indicates a bug in Xamarin.iOS; please file a new issue on [github]
427427

428428
<a name="MT0073" />
429429

430-
### MT0073: Xamarin.iOS * does not support a deployment target of * (the minimum is *). Please select a newer deployment target in your project's Info.plist.
430+
### MT0073: Xamarin.iOS \* does not support a deployment target of \* (the minimum is \*). Please select a newer deployment target in your project's Info.plist.
431431

432432
The minimum deployment target is the one specified in the error message; please select a newer deployment target in the project's Info.plist.
433433

434434
If updating the deployment target is not possible, then please use an older version of Xamarin.iOS.
435435

436436
<a name="MT0074" />
437437

438-
### MT0074: Xamarin.iOS * does not support a minimum deployment target of * (the maximum is *). Please select an older deployment target in your project's Info.plist or upgrade to a newer version of Xamarin.iOS.
438+
### MT0074: Xamarin.iOS \* does not support a minimum deployment target of \* (the maximum is \*). Please select an older deployment target in your project's Info.plist or upgrade to a newer version of Xamarin.iOS.
439439

440440
Xamarin.iOS does not support setting the minimum deployment target to a higher version than the version this particular version of Xamarin.iOS was built for.
441441

442442
Please select an older minimum deployment target in the project's Info.plist, or upgrade to a newer version of Xamarin.iOS.
443443

444444
<a name="MT0075" />
445445

446-
### MT0075: Invalid architecture '*' for * projects. Valid architectures are: *
446+
### MT0075: Invalid architecture '\*' for \* projects. Valid architectures are: \*
447447

448448
An invalid architecture was specified. Please verify that architecture is valid.
449449

@@ -469,7 +469,7 @@ Incremental builds are only supported when the deployment target is at least 8.0
469469

470470
<a name="MT0079" />
471471

472-
### MT0079: The recommended Xcode version for Xamarin.iOS * is Xcode * or later. The current Xcode version (found in *) is *.
472+
### MT0079: The recommended Xcode version for Xamarin.iOS \* is Xcode \* or later. The current Xcode version (found in \*) is \*.
473473

474474
This is a warning informing that the current version of Xcode is not the recommended version of Xcode for this version of Xamarin.iOS.
475475

@@ -523,7 +523,7 @@ This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https:/
523523

524524
<a name="MT0091" />
525525

526-
### MT0091: This version of Xamarin.iOS requires the * SDK (shipped with Xcode *). Either upgrade Xcode to get the required header files or set the managed linker behaviour to Link Framework SDKs Only (to try to avoid the new APIs).
526+
### MT0091: This version of Xamarin.iOS requires the \* SDK (shipped with Xcode \*). Either upgrade Xcode to get the required header files or set the managed linker behaviour to Link Framework SDKs Only (to try to avoid the new APIs).
527527

528528
Xamarin.iOS requires the header files, from the SDK version specified in the error message, to build your application. The recommended way to fix this error is to upgrade Xcode to get the required SDK, this will include all the required header files. If you have multiple versions of Xcode installed, or want to use an Xcode in a non-default location, make sure to set the correct Xcode location in your IDE's preferences.
529529

@@ -791,7 +791,7 @@ earlier iOS version.
791791

792792
<a name="MT0123" />
793793

794-
### MT0123: The executable assembly * does not reference *.
794+
### MT0123: The executable assembly \* does not reference \*.
795795

796796
No reference could be found to the platform assembly (Xamarin.iOS.dll / Xamarin.TVOS.dll / Xamarin.WatchOS.dll) in the executable assembly.
797797

@@ -848,7 +848,7 @@ For further information see bug #[52727](https://bugzilla.xamarin.com/show_bug.c
848848

849849
<a name="MT0128" />
850850

851-
### MT0128: Could not touch the file '*': *
851+
### MT0128: Could not touch the file '\*': \*
852852

853853
A failure occurred when touching a file (which is done to ensure partial builds are done correctly).
854854

@@ -938,15 +938,15 @@ with your full version information and build log output.
938938

939939
<a name="MT1010" />
940940

941-
### MT1010: Could not load the assembly '*': *
941+
### MT1010: Could not load the assembly '\*': \*
942942

943943
<a name="MT1011" />
944944

945945
### MT1011: Could not add missing resource file: '*'
946946

947947
<a name="MT1012" />
948948

949-
### MT1012: Failed to list the apps on the device '*': *
949+
### MT1012: Failed to list the apps on the device '\*': \*
950950

951951
<a name="MT1013" />
952952

@@ -960,11 +960,11 @@ This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https:/
960960

961961
<a name="MT1015" />
962962

963-
### MT1015: Failed to create the executable '*': *
963+
### MT1015: Failed to create the executable '\*': \*
964964

965965
<a name="MT1015" />
966966

967-
### MT1015: Failed to create the executable '*': *
967+
### MT1015: Failed to create the executable '\*': \*
968968

969969
<a name="MT1016" />
970970

@@ -1015,7 +1015,7 @@ A directory could not be copied. The error message from the copy operation has m
10151015

10161016
<a name="MT1023" />
10171017

1018-
### MT1023: Could not communicate with the device to find the application '*' : *
1018+
### MT1023: Could not communicate with the device to find the application '\*' : \*
10191019

10201020
An error occurred when trying to lookup an application on device.
10211021

@@ -1050,7 +1050,7 @@ Things to try to solve this:
10501050

10511051
<a name="MT1026" />
10521052

1053-
### MT1026: Could not download the crash report * from the device *.
1053+
### MT1026: Could not download the crash report \* from the device \*.
10541054

10551055
An error occurred when trying to download the crash reports from the device.
10561056

@@ -1239,7 +1239,7 @@ If you're deploying an enterprise app or using a free provisioning profile, you
12391239

12401240
<a name="MT1212" />
12411241

1242-
### MT1212: Failed to create a simulator version where type = * and runtime = *.
1242+
### MT1212: Failed to create a simulator version where type = \* and runtime = \*.
12431243

12441244
<a name="MT1213" />
12451245

@@ -1313,7 +1313,7 @@ Please review the bulid log for more information about this failure from the nat
13131313

13141314
<a name="MT1304" />
13151315

1316-
### MT1304: The embedded framework '*' in * is invalid: it does not contain an Info.plist.
1316+
### MT1304: The embedded framework '\*' in \* is invalid: it does not contain an Info.plist.
13171317

13181318
The specified embedded framework does not contain an Info.plist, and is therefore not a valid framework.
13191319

@@ -1363,7 +1363,7 @@ Things to try to solve this:
13631363

13641364
<a name="MT1402" />
13651365

1366-
### MT1402: Could not read file info for *: AFCFileInfoOpen returned *
1366+
### MT1402: Could not read file info for \*: AFCFileInfoOpen returned \*
13671367

13681368
An error occurred when trying to access crash reports from the device.
13691369

@@ -1377,7 +1377,7 @@ Things to try to solve this:
13771377

13781378
<a name="MT1403" />
13791379

1380-
### MT1403: Could not read crash report: AFCDirectoryOpen (*) returned: *
1380+
### MT1403: Could not read crash report: AFCDirectoryOpen (\*) returned: \*
13811381

13821382
An error occurred when trying to access crash reports from the device.
13831383

@@ -1391,7 +1391,7 @@ Things to try to solve this:
13911391

13921392
<a name="MT1404" />
13931393

1394-
### MT1404: Could not read crash report: AFCFileRefOpen (*) returned: *
1394+
### MT1404: Could not read crash report: AFCFileRefOpen (\*) returned: \*
13951395

13961396
An error occurred when trying to access crash reports from the device.
13971397

@@ -1405,7 +1405,7 @@ Things to try to solve this:
14051405

14061406
<a name="MT1405" />
14071407

1408-
### MT1405: Could not read crash report: AFCFileRefRead (*) returned: *
1408+
### MT1405: Could not read crash report: AFCFileRefRead (\*) returned: \*
14091409

14101410
An error occurred when trying to access crash reports from the device.
14111411

@@ -1419,7 +1419,7 @@ Things to try to solve this:
14191419

14201420
<a name="MT1406" />
14211421

1422-
### MT1406: Could not list crash reports: AFCDirectoryOpen (*) returned: *
1422+
### MT1406: Could not list crash reports: AFCDirectoryOpen (\*) returned: \*
14231423

14241424
An error occurred when trying to access crash reports from the device.
14251425

@@ -1483,7 +1483,7 @@ file -arch all -l /path/to/library.dylib
14831483

14841484
<a name="MT1603" />
14851485

1486-
### MT1603: Unknown format for fat entry at position * in *.
1486+
### MT1603: Unknown format for fat entry at position \* in \*.
14871487

14881488
An error occurred while processing the fat archive in question.
14891489

@@ -1497,7 +1497,7 @@ file -arch all -l /path/to/file
14971497

14981498
<a name="MT1604" />
14991499

1500-
### MT1604: File of type * is not a MachO file (*).
1500+
### MT1604: File of type \* is not a MachO file (\*).
15011501

15021502
An error occurred while processing the MachO file in question.
15031503

@@ -1885,11 +1885,11 @@ This is always a bug in Xamarin.iOS; please file a new issue on [github](https:/
18851885

18861886
<a name="MT4116" />
18871887

1888-
### MT4116: Could not register the assembly '*': *
1888+
### MT4116: Could not register the assembly '\*': \*
18891889

18901890
<a name="MT4117" />
18911891

1892-
### MT4117: The registrar found a signature mismatch in the method '*.*' - the selector indicates the method takes * parameters, while the managed method has * parameters.
1892+
### MT4117: The registrar found a signature mismatch in the method '\*.\*' - the selector indicates the method takes \* parameters, while the managed method has \* parameters.
18931893

18941894
<a name="MT4118" />
18951895

@@ -1919,7 +1919,7 @@ This error indicates a bug in Xamarin.iOS. Please file a new issue on [github](h
19191919

19201920
<a name="MT4124" />
19211921

1922-
### MT4124: Invalid * found on '*'. Please file a bug report at http://bugzilla.xamarin.com
1922+
### MT4124: Invalid \* found on '\*'. Please file a bug report at http://bugzilla.xamarin.com
19231923

19241924
This error indicates a bug in Xamarin.iOS. Please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
19251925

@@ -1961,7 +1961,7 @@ This error indicates a bug in Xamarin.iOS. Please file a new issue on [github](h
19611961

19621962
<a name="MT4134" />
19631963

1964-
### MT4134: Your application is using the '*' framework, which isn't included in the iOS SDK you're using to build your app (this framework was introduced in iOS *, while you're building with the iOS * SDK.) Please select a newer SDK in your app's iOS Build options.
1964+
### MT4134: Your application is using the '\*' framework, which isn't included in the iOS SDK you're using to build your app (this framework was introduced in iOS \*, while you're building with the iOS \* SDK.) Please select a newer SDK in your app's iOS Build options.
19651965

19661966
<a name="MT4135" />
19671967

@@ -1983,7 +1983,7 @@ This error indicates a bug in Xamarin.iOS. Please file a new issue on [github](h
19831983

19841984
<a name="MT4140" />
19851985

1986-
### MT4140: The registrar found a signature mismatch in the method '*.*' - the selector indicates the variadic method takes * parameters, while the managed method has * parameters.
1986+
### MT4140: The registrar found a signature mismatch in the method '\*.\*' - the selector indicates the variadic method takes \* parameters, while the managed method has \* parameters.
19871987

19881988
<a name="MT4141" />
19891989

@@ -2099,7 +2099,7 @@ Please verify that the `Register` attribute on the managed class mentioned in th
20992099

21002100
<a name="MT4158" />
21012101

2102-
### MT4158: Cannot register the constructor * in the category * because constructors in categories are not supported.
2102+
### MT4158: Cannot register the constructor \* in the category \* because constructors in categories are not supported.
21032103

21042104
<a name="MT4159" />
21052105

@@ -2995,7 +2995,7 @@ Where * can be:
29952995

29962996
<a name="MT8004" />
29972997

2998-
### MT8004: Cannot create an instance of * for the native object 0x* (of type '*'), because another instance already exists for this native object (of type *).
2998+
### MT8004: Cannot create an instance of \* for the native object 0x* (of type '\*'), because another instance already exists for this native object (of type \*).
29992999

30003000
<a name="MT8005" />
30013001

@@ -3011,7 +3011,7 @@ Where * can be:
30113011

30123012
<a name="MT8008" />
30133013

3014-
### MT8008: The loaded version of Xamarin.iOS.dll was compiled for * bits, while the process is * bits. Please file a bug at http://bugzilla.xamarin.com.
3014+
### MT8008: The loaded version of Xamarin.iOS.dll was compiled for \* bits, while the process is \* bits. Please file a bug at http://bugzilla.xamarin.com.
30153015

30163016
This indicates something is wrong in the build process. Please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
30173017

@@ -3091,7 +3091,7 @@ This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https:/
30913091

30923092
<a name="MT8020" />
30933093

3094-
### MT8020: Could not find the module with MetadataToken * in the assembly *.
3094+
### MT8020: Could not find the module with MetadataToken \* in the assembly \*.
30953095

30963096
This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
30973097

@@ -3103,13 +3103,13 @@ This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https:/
31033103

31043104
<a name="MT8022" />
31053105

3106-
### MT8022: Expected the token reference * to be a *, but it's a *. Please file a bug report at http://bugzilla.xamarin.com.
3106+
### MT8022: Expected the token reference \* to be a \*, but it's a \*. Please file a bug report at http://bugzilla.xamarin.com.
31073107

31083108
This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
31093109

31103110
<a name="MT8023" />
31113111

3112-
### MT8023: An instance object is required to construct a closed generic method for the open generic method: * (token reference: *). Please file a bug report at http://bugzilla.xamarin.com.
3112+
### MT8023: An instance object is required to construct a closed generic method for the open generic method: \* (token reference: \*). Please file a bug report at http://bugzilla.xamarin.com.
31133113

31143114
This indicates a bug in Xamarin.iOS. Please file a new issue on [github](https://github.com/xamarin/xamarin-macios/issues/new).
31153115

0 commit comments

Comments
 (0)