summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-12-29 08:04:39 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-12-29 08:04:39 +0000
commiteea359203ac7f861ac9536b39e639f6c65579501 (patch)
treee0e7e2403e6e9422121a2a5c14afeffbf5cc0d43 /README
parent17837b343be94dfa1427786008576646d4a89dcf (diff)
Reversed changes from r246:
+ Removed invisible anchors in front of header tags in HTML output. Reason: no way to prevent duplicate ID attributes (which is invalid HTML), since there might be duplicate header titles. See http://six.pairlist.net/pipermail/markdown-discuss/2005-January/000975.html. git-svn-id: https://pandoc.googlecode.com/svn/trunk@306 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'README')
-rw-r--r--README21
1 files changed, 0 insertions, 21 deletions
diff --git a/README b/README
index d3a3e7326..6c3210d9a 100644
--- a/README
+++ b/README
@@ -298,27 +298,6 @@ markdown test suite, type `make test-markdown`.)
[standard markdown]: http://daringfireball.net/projects/markdown/syntax
"Markdown syntax description"
-Section Headings
-----------------
-
-Pandoc creates an invisible anchor in front of every HTML section
-heading. The ID of this anchor is derived from the section heading
-itself: spaces are converted to underscores, and formatting, links,
-and other markup are removed. Thus, for example, the source
-
- ## Aristotle's *De Anima*
-
-gets converted to HTML as follows:
-
- <a id="Aristotle's_De_Anima"></a>
- <h2>Aristotle's <em>De Anima</em></h2>
-
-This makes it easy to provide internal links that jump to a particular
-place in a document. To provide a link to the heading above, for
-example, just insert:
-
- [Back to Aristotle](#Aristotle's_De_Anima)
-
Lists
-----