typora / typora-ash-theme

A dark theme for Typora
29 stars 6 forks source link

Blockquotes: All quotation marks after the first one are single quotation marks #2

Closed mjendruk closed 6 years ago

mjendruk commented 6 years ago

All encircled quotation marks used to highlight block quotes are single quotation marks. According to this website (https://css-tricks.com/almanac/properties/q/quotes/), “open-quote” needs to be closed by a “close-quote” or “no-close-quote”. Adding the following snippet into the css file fixes it:

blockquote:after {
    content: no-close-quote;
}

screen shot 2017-10-03 at 16 05 35