...
11
2//- - - - - - - - -//
3This should 'be' replaced
4//- - - - - - - - -//
5<p>This should ‘be’ replaced</p>
6//= = = = = = = = = = = = = = = = = = = = = = = =//
7
82
9//- - - - - - - - -//
10This should "be" replaced
11//- - - - - - - - -//
12<p>This should “be” replaced</p>
13//= = = = = = = = = = = = = = = = = = = = = = = =//
14
153
16//- - - - - - - - -//
17**--** *---* a...<< b>>
18//- - - - - - - - -//
19<p><strong>–</strong> <em>—</em> a…« b»</p>
20//= = = = = = = = = = = = = = = = = = = = = = = =//
21
224
23//- - - - - - - - -//
24Some say '90s, others say 90's, but I can't say which is best.
25//- - - - - - - - -//
26<p>Some say ’90s, others say 90’s, but I can’t say which is best.</p>
27//= = = = = = = = = = = = = = = = = = = = = = = =//
28
295: contractions
30//- - - - - - - - -//
31Alice's, I'm ,Don't, You'd
32
33I've, I'll, You're
34
35[Cat][]'s Pajamas
36
37Yahoo!'s
38
39[Cat]: http://example.com
40//- - - - - - - - -//
41<p>Alice’s, I’m ,Don’t, You’d</p>
42<p>I’ve, I’ll, You’re</p>
43<p><a href="http://example.com">Cat</a>’s Pajamas</p>
44<p>Yahoo!’s</p>
45//= = = = = = = = = = = = = = = = = = = = = = = =//
46
476: "" after digits are an inch
48//- - - - - - - - -//
49My height is 5'6"".
50//- - - - - - - - -//
51<p>My height is 5'6"".</p>
52//= = = = = = = = = = = = = = = = = = = = = = = =//
53
547: quote followed by ,.?! and spaces maybe a closer
55//- - - - - - - - -//
56reported "issue 1 (IE-only)", "issue 2", 'issue3 (FF-only)', 'issue4'
57//- - - - - - - - -//
58<p>reported “issue 1 (IE-only)”, “issue 2”, ‘issue3 (FF-only)’, ‘issue4’</p>
59//= = = = = = = = = = = = = = = = = = = = = = = =//
60
618: handle inches in qoutes
62//- - - - - - - - -//
63"Monitor 21"" and "Monitor""
64//- - - - - - - - -//
65<p>“Monitor 21"” and “Monitor”"</p>
66//= = = = = = = = = = = = = = = = = = = = = = = =//
67
689: Closing quotation marks within italics
69//- - - - - - - - -//
70*"At first, things were not clear."*
71//- - - - - - - - -//
72<p><em>“At first, things were not clear.”</em></p>
73//= = = = = = = = = = = = = = = = = = = = = = = =//
74
7510: Closing quotation marks within boldfacing
76//- - - - - - - - -//
77**"At first, things were not clear."**
78//- - - - - - - - -//
79<p><strong>“At first, things were not clear.”</strong></p>
80//= = = = = = = = = = = = = = = = = = = = = = = =//
81
8211: Closing quotation marks within boldfacing and italics
83//- - - - - - - - -//
84***"At first, things were not clear."***
85//- - - - - - - - -//
86<p><em><strong>“At first, things were not clear.”</strong></em></p>
87//= = = = = = = = = = = = = = = = = = = = = = = =//
88
8912: Closing quotation marks within boldfacing and italics
90//- - - - - - - - -//
91***"At first, things were not clear."***
92//- - - - - - - - -//
93<p><em><strong>“At first, things were not clear.”</strong></em></p>
94//= = = = = = = = = = = = = = = = = = = = = = = =//
95
9613: Plural possessives
97//- - - - - - - - -//
98John's dog is named Sam. The Smiths' dog is named Rover.
99//- - - - - - - - -//
100<p>John’s dog is named Sam. The Smiths’ dog is named Rover.</p>
101//= = = = = = = = = = = = = = = = = = = = = = = =//
102
10314: Links within quotation marks and parenthetical phrases
104//- - - - - - - - -//
105This is not difficult (see "[Introduction to Hugo Templating](https://gohugo.io/templates/introduction/)").
106//- - - - - - - - -//
107<p>This is not difficult (see “<a href="https://gohugo.io/templates/introduction/">Introduction to Hugo Templating</a>”).</p>
108//= = = = = = = = = = = = = = = = = = = = = = = =//
109
11015: Quotation marks within links
111//- - - - - - - - -//
112Apple's early Cairo font gave us ["moof" and the "dogcow."](https://www.macworld.com/article/2926184/we-miss-you-clarus-the-dogcow.html)
113//- - - - - - - - -//
114<p>Apple’s early Cairo font gave us <a href="https://www.macworld.com/article/2926184/we-miss-you-clarus-the-dogcow.html">“moof” and the “dogcow.”</a></p>
115//= = = = = = = = = = = = = = = = = = = = = = = =//
116
11716: Single closing quotation marks with slang/informalities
118//- - - - - - - - -//
119"I'm not doin' that," Bill said with emphasis.
120//- - - - - - - - -//
121<p>“I’m not doin’ that,” Bill said with emphasis.</p>
122//= = = = = = = = = = = = = = = = = = = = = = = =//
123
12417: Closing single quotation marks in quotations-within-quotations
125//- - - - - - - - -//
126Janet said, "When everything is 'breaking news,' nothing is 'breaking news.'"
127//- - - - - - - - -//
128<p>Janet said, “When everything is ‘breaking news,’ nothing is ‘breaking news.’”</p>
129//= = = = = = = = = = = = = = = = = = = = = = = =//
130
13118: Opening single quotation marks for abbreviations
132//- - - - - - - - -//
133We're talking about the internet --- 'net for short. Let's rock 'n roll!
134//- - - - - - - - -//
135<p>We’re talking about the internet — ’net for short. Let’s rock ’n roll!</p>
136//= = = = = = = = = = = = = = = = = = = = = = = =//
137
13819: Quotes in alt text
139//- - - - - - - - -//
140
141//- - - - - - - - -//
142<p><img src="https://example.com/image.jpg" alt="Nice & day, isn’t it?"></p>
143//= = = = = = = = = = = = = = = = = = = = = = = =//
View as plain text