Partition names with docco / markdown?

Using CoffeeScript and Docco, sections are created in generated HTML, which can then be used as links, for example.

geometry.html#section-82 

Does anyone know if there is a way to name these sections so that it can (for example):

 geometry.html#vector 

EDIT: It would seem that this can be achieved by simply adding to the HTML manually:

 **MARKDOWN** # ## <section id='vector'>Vector:</section> 

but are there other, perhaps more elegant ways?

+4
source share
1 answer

Currently, the best way to find this is as follows:

 # ## <section id='vector'>Vector:</section> 

It seems to work very well, I would like to add it to Markdown.

+2
source

All Articles