sirthias / pegdown

A pure-Java Markdown processor based on a parboiled PEG parser supporting a number of extensions
http://pegdown.org
Apache License 2.0
1.29k stars 217 forks source link

Adds anchor links to headers. #139

Closed pepoirot closed 10 years ago

pepoirot commented 10 years ago

Allows the generations of headings with a anchoring link, such as (when the option is enabled):

## my heading title

is transformed to:

<h2><a name="my-heading-title">my heading title</a></h2>

sirthias commented 10 years ago

Nice, I like it! Thanks a lot!