@@ -653,7 +653,7 @@ Array [
653
653
<a
654
654
href = " /projects/markdown/syntax.text"
655
655
>
656
- see the source for it by adding ' .text' to the URL
656
+ see the source for it by adding ‘ .text’ to the URL
657
657
</a >
658
658
.
659
659
</p >,
@@ -672,11 +672,11 @@ Array [
672
672
<br />
673
673
document should be publishable as-is, as plain text, without looking
674
674
<br />
675
- like it' s been marked up with tags or formatting instructions. While
675
+ like it’ s been marked up with tags or formatting instructions. While
676
676
<br />
677
- Markdown' s syntax has been influenced by several existing text-to-HTML
677
+ Markdown’ s syntax has been influenced by several existing text-to-HTML
678
678
<br />
679
- filters -- including
679
+ filters – including
680
680
<a
681
681
href = " http://docutils.sourceforge.net/mirror/setext.html"
682
682
>
@@ -713,9 +713,9 @@ Array [
713
713
>
714
714
EtText
715
715
</a >
716
- -- the single biggest source of
716
+ – the single biggest source of
717
717
<br />
718
- inspiration for Markdown' s syntax is the format of plain text email.
718
+ inspiration for Markdown’ s syntax is the format of plain text email.
719
719
</p >,
720
720
<h2 >
721
721
Block Elements
@@ -728,18 +728,18 @@ Array [
728
728
<br />
729
729
by one or more blank lines. (A blank line is any line that looks like a
730
730
<br />
731
- blank line -- a line containing nothing but spaces or tabs is considered
731
+ blank line – a line containing nothing but spaces or tabs is considered
732
732
<br />
733
733
blank.) Normal paragraphs should not be indented with spaces or tabs.
734
734
</p >,
735
735
<p >
736
- The implication of the " one or more consecutive lines of text" rule is
736
+ The implication of the “ one or more consecutive lines of text” rule is
737
737
<br />
738
- that Markdown supports " hard-wrapped" text paragraphs. This differs
738
+ that Markdown supports “ hard-wrapped” text paragraphs. This differs
739
739
<br />
740
740
significantly from most other text-to-HTML formatters (including Movable
741
741
<br />
742
- Type's " Convert Line Breaks" option) which translate every line break
742
+ Type’s “ Convert Line Breaks” option) which translate every line break
743
743
<br />
744
744
character in a paragraph into a
745
745
<code >
@@ -775,11 +775,11 @@ Array [
775
775
Markdown supports two styles of headers, [Setext] [1] and [atx] [2].
776
776
</p >,
777
777
<p >
778
- Optionally, you may " close" atx-style headers. This is purely
778
+ Optionally, you may “ close” atx-style headers. This is purely
779
779
<br />
780
- cosmetic -- you can use this if you think it looks better. The
780
+ cosmetic – you can use this if you think it looks better. The
781
781
<br />
782
- closing hashes don' t even need to match the number of hashes
782
+ closing hashes don’ t even need to match the number of hashes
783
783
<br />
784
784
used to open the header. (The number of opening hashes
785
785
<br />
@@ -800,7 +800,7 @@ Array [
800
800
className = " bash"
801
801
/>
802
802
</code >
803
- characters for blockquoting. If you' re
803
+ characters for blockquoting. If you’ re
804
804
<br />
805
805
familiar with quoting passages of text in an email message, then you
806
806
<br />
@@ -916,7 +916,7 @@ Array [
916
916
</li >
917
917
</ol >
918
918
<p >
919
- Here' s some example code:
919
+ Here’ s some example code:
920
920
</p >
921
921
<code >
922
922
return shell_exec("echo $input | $markdown_script");
@@ -937,9 +937,9 @@ Array [
937
937
Markdown supports ordered (numbered) and unordered (bulleted) lists.
938
938
</p >,
939
939
<p >
940
- Unordered lists use asterisks, pluses, and hyphens -- interchangably
940
+ Unordered lists use asterisks, pluses, and hyphens – interchangably
941
941
<br />
942
- -- as list markers:
942
+ – as list markers:
943
943
</p >,
944
944
<ul >
945
945
<li >
@@ -1019,7 +1019,7 @@ Array [
1019
1019
</li >
1020
1020
</ol >,
1021
1021
<p >
1022
- It' s important to note that the actual numbers you use to mark the
1022
+ It’ s important to note that the actual numbers you use to mark the
1023
1023
<br />
1024
1024
list have no effect on the HTML output Markdown produces. The HTML
1025
1025
<br />
@@ -1068,13 +1068,13 @@ Array [
1068
1068
</li >
1069
1069
</ol >,
1070
1070
<p >
1071
- you' d get the exact same HTML output. The point is, if you want to,
1071
+ you’ d get the exact same HTML output. The point is, if you want to,
1072
1072
<br />
1073
1073
you can use ordinal numbers in your ordered Markdown lists, so that
1074
1074
<br />
1075
1075
the numbers in your source match the numbers in your published HTML.
1076
1076
<br />
1077
- But if you want to be lazy, you don' t have to.
1077
+ But if you want to be lazy, you don’ t have to.
1078
1078
</p >,
1079
1079
<p >
1080
1080
To make lists look nice, you can wrap items with hanging indents:
@@ -1098,7 +1098,7 @@ Array [
1098
1098
</li >
1099
1099
</ul >,
1100
1100
<p >
1101
- But if you want to be lazy, you don' t have to:
1101
+ But if you want to be lazy, you don’ t have to:
1102
1102
</p >,
1103
1103
<ul >
1104
1104
<li >
@@ -1161,7 +1161,7 @@ Array [
1161
1161
This is a list item with two paragraphs.
1162
1162
</p >
1163
1163
<p >
1164
- This is the second paragraph in the list item. You' re
1164
+ This is the second paragraph in the list item. You’ re
1165
1165
<br />
1166
1166
only required to indent the first line. Lorem ipsum dolor
1167
1167
<br />
@@ -1175,7 +1175,7 @@ Array [
1175
1175
</li >
1176
1176
</ul >,
1177
1177
<p >
1178
- To put a blockquote within a list item, the blockquote' s
1178
+ To put a blockquote within a list item, the blockquote’ s
1179
1179
<code >
1180
1180
<span
1181
1181
className = " hljs-meta"
@@ -1210,7 +1210,7 @@ Array [
1210
1210
<em >
1211
1211
twice
1212
1212
</em >
1213
- -- 8 spaces or two tabs:
1213
+ – 8 spaces or two tabs:
1214
1214
</p >,
1215
1215
<ul >
1216
1216
<li >
@@ -1305,7 +1305,7 @@ end tell
1305
1305
<br />
1306
1306
are automatically converted into HTML entities. This makes it very
1307
1307
<br />
1308
- easy to include example HTML source code using Markdown -- just paste
1308
+ easy to include example HTML source code using Markdown – just paste
1309
1309
<br />
1310
1310
it and indent it, and Markdown will handle the hassle of encoding the
1311
1311
<br />
@@ -1322,7 +1322,7 @@ end tell
1322
1322
<br />
1323
1323
asterisks are just literal asterisks within a code block. This means
1324
1324
<br />
1325
- it' s also easy to use Markdown to write about Markdown' s own syntax.
1325
+ it’ s also easy to use Markdown to write about Markdown’ s own syntax.
1326
1326
</p >,
1327
1327
Array [
1328
1328
<pre
@@ -1388,7 +1388,7 @@ end tell
1388
1388
<p >
1389
1389
To create an inline link, use a set of regular parentheses immediately
1390
1390
<br />
1391
- after the link text' s closing square bracket. Inside the parentheses,
1391
+ after the link text’ s closing square bracket. Inside the parentheses,
1392
1392
<br />
1393
1393
put the URL where you want the link to point, along with an
1394
1394
<em >
0 commit comments