pycco-docs / pycco

Literate-style documentation generator.

Home Page:https://pycco-docs.github.io/pycco/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

h3 header?

timmolendijk opened this issue · comments

How do I get an h3 header (f.e. the "Main Documentation Generation Functions" in http://fitzgen.github.com/pycco/)?

I'm writing Javascript and whenever I do:
// === Yadda ===
I get an em instead of an h3.

I found out by reading the source (as opposed to the pycco-generated doc page!):
// ### Yadda
Hmm... any more undocumented stuff I should know about?

This is valid markdown (which pycco uses to process teh docs), no undocumented feature here:

// ### Header 3

Re: linkable sections:

// === Section ===

Was recently changed to h3 in a commit and I'm not sure I'm going to keep it this way.
I haven't regenerated the docs that are hosted on github in some time (I think since the last release). I will be making a new release soon, and then you can upgrade on PyPi or from wherever. I will be sure to regenerate the docs hosted on github before I make the new release.

Ah yeah I get it now. I missed the Markdown reference, and the discrepancy between docs and source got me confused.

Thx!

No problem!