We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Fix anchors to compensate for new github munging (annoying).
Add links to Constructors; make footers link to missing pages.
Taking a crack at documentation for calling C code
Updated Metaprogramming (markdown)
Automatically add footer to each page with next & prev links. Everything after the <!-- FOOTER --> comment is considered as a part of the footer and will be replaced by rerunning the ./fixup script. The fixup script takes no options and just regenerates the footer sections of each page.
Add anchors to all subsection headings. Accomplished with this perl one-liner: perl -i -ple 'if (/^#+\s*(.*?)\s*$/) { my $name = $1; $name =~ s/\W+/ /g; $name =~ s/^\s+//; $name =~ s/\s+$//; $name =~ s/ /-/g; s{^(#+)\s*(.*?)\s*$}{<a name="$name"/>\n$1 $2} }' *.md
Switch all headings to using the ## style instead of underlining.
Add a stub for Metaprogramming.