vote up 1 vote down star

I like to save local copies of useful text-heavy pages from the 'Net so I can practice improving their appearance by modifying the markup to include CSS. (What can I say ... It keeps me off the streets)

I've noticed that text on the pages is often delimited by ` and '. See the blockquoted example below.

Is there a good reason for this? I'd like to do my modifications automatically with a script if I thought these quotes were there for a good reason. Is it, for example, a byproduct of a particular authoring tool?

I have tried to search for this, but search engines treat it like empty or incomplete strings and don't give meaningful results.

EDIT: A single quote example (` ') can be found in Eric Raymond's Cathedral and the Bazaar

The problem was this: suppose someone named `joe' on locke sent me mail. If I fetched the mail to snark and then tried to reply to it, my mailer would cheerfully try to ship it to a nonexistent `joe' on snark. Hand-editing reply addresses to tack on `@ccil.org' quickly got to be a serious pain.
flag

1  
Hm, can you post a link to a sample page that shows this behavior? – Tomalak Sep 16 at 13:33
2  
This sounds unlikely. To rule out that it's something funny with your download and/or editor, you can use "view source" directly in the browser to make sure. And if you could then add a few links to such sites to your question, that would be helpful. – unwind Sep 16 at 13:34
I've edited the question to add a link. – pavium Sep 16 at 13:44
The backtick and single quote around `joe' are visible with view source in the 5th paragraph of the linked page. – pavium Sep 16 at 13:55
The example you give isn't HTML, it's text that happens to be available on an HTML page. See Dave Hinton's reply below for an explanation. – NickFitz Sep 16 at 14:05

6 Answers

vote up 4 vote down check

The example of Eric Raymond’s essay is a typical example of people from pre-Unicode eras trying to “improve” the typograph of their text by using conventions that no longer hold. The quoting style `' is typical of that. It’s also used in LaTeX (which automatically converts it to correct typographical single quotes ‘’).

You can see other ASCII artifacts in Eric’s essay, too: for example, he uses “--” instead of a “correct” dash “” (an awful lot of people do this, since the dash doesn’t exist on default Windows keyboards).

As such, it’s an anachronism from a time where support for Unicode fonts (or generally: fonts lacking these typographical features) wasn’t widespread.

link|flag
It's true, the pages I've seen this in would tend to be the older ones, or derived from older texts. – pavium Sep 16 at 14:10
+1 for a great explanation! – Moayad Mardini Sep 16 at 14:11
pavium, because it's true, you should mark it as answer. – Moayad Mardini Sep 16 at 14:12
It's my favourite answer so far ... but it's late here. I'll come back to it in the morning. – pavium Sep 16 at 14:18
vote up 2 vote down

This:

suppose someone named `joe'

is a visual affectation for smart quotes that works in ASCII-only environments.

I personally wouldn't recommend it at all. ` is not an open-quote, it's a grave accent, and the resulting lop-sided look of the quotes is, to my tastes, worse than just using 'straight quotes'. ``Double faux-quotes" are even uglier.

You'll find some Germans type faux-smart-quotes using both the grave and acute accent characters: `like this´. This is not ASCII-compatible (it uses an ISO-8859-1 extended character) and it's still quite ugly, but they do it because the accent characters are present on the German keyboard layout, making them easy to type. (And they don't know any better.)

Really we should have proper ‘smart quotes’ available “on the keyboard” for «direct» typing. That would solve these problems and banish bogus auto-smart-quote features — including the silly StackOverflow feature that messed up your question title — back to the bitbucket where they belong. (Though actually... I already have.)

link|flag
I think they're ugly too. That's why I try to get rid of them, and I'm wondering who uses them in the first place, and why? – pavium Sep 16 at 14:04
People who wanted to do smart quotes way back before there was a reliable way of rendering smart quotes. And idiots, of course. Never underestimate the power of idiots. – bobince Sep 16 at 14:07
1  
I think there is a severe dissociation of online publishing and desktop publishing. While I appreciate typographically correct quotes in printed documents (and hence, in word processors), I find them more than annoying when they are used online. I have a feeling that people try to be smart or simply just "different" by using them, and like apostrophes, the vast majority just gets it horribly wrong. – Tomalak Sep 16 at 15:01
vote up 2 vote down

This style of quote marks has been an (note: not the only) accepted style of quoting in plain text files since before the web. This is nothing to do with html specifically --- it is acceptable in html text files, but predates html.

link|flag
vote up 0 vote down

Neither HTML4 nor HTML5 allow curly quotes as attribute value delimiters in the markup. Searching for "curly quotes html" in search engines throws up a few pages, the first of which Curling Quotes in HTML, XML and SGML describes some tools to remove erroneous quotes, which is the opposite of what you ask for but the right thing to do with such files.

Your comment indicates that you mean having backtick and quote in the text, rather than in the markup. This was a fairly common style on usenet back in the day, as backtick is ASCII but curly quotes aren't. To insert a backtick into your text, press the backtick key on your keyboard when typing it in.

link|flag
Sorry about the curly quotes in the title of the question. They were added by SO's software. I'm not complaining about curly quotes (although someone should) – pavium Sep 16 at 13:45
vote up 5 vote down

HTML doesn't. Only ' and " characters may be used to delimit attribute values (which are the only strings that can be delimited in HTML).

People writing text (which happens to be marked up with HTML) may use “,”,‘ and ’, but that is just writing using quote marks.

link|flag
I'm not thinking of attribute values, but quoted strings in the text of the webpage. – pavium Sep 16 at 13:39
Then that is just people using appropriate characters for writing quoted material instead of the simple straight quote marks found in plain ASCII. – David Dorward Sep 16 at 13:55
But I've seen it so often, and apparently by people who would know better (Eric Raymond??), that I really wondered if some kind of authoring software was responsible. – pavium Sep 16 at 14:07
vote up 0 vote down

I think this is an artifact of your editor -- perhaps you have smart quotes turned on. Strings in HTML are delimited by either a pair of single- or double-quotes, not smart quote characters.

link|flag
No I'm using vim. The funny quotes are in the files as they are downloaded. – pavium Sep 16 at 13:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.