This modification allows generate Table Of Contents (TOC) for any pages hosted with WERC. Also has possibility to make link to head section inside document or to other page.
See this site at all as a demo (however slightly improved regarding CSSes).
To add TOC feature need to do some modifications.
-
Download script gentoc.awk and put it to bin/contrib.
-
Modify template default_master.tpl. Make its copy to your site:
cp lib/default_master.tpl sites/sitename/_werc/lib
find and comment out original line:
run_handler $handler_body_main
put next lines below:
%(
ifs=''
with_toc=`{run_handler $handler_body_main | gentoc.awk}
echo '<div class="div_after_toc">' $with_toc
%)
-
Add some items to style.css. Make its copy for your site:
cp pub/style/style.css sites/sitename/pub
and add next lines:
.div_toc {
position: absolute;
right: 1px;
top: 30px;
float: right;
margin: 50px;
padding: 0px 50px 0px 0px;
font-size: 16px;
box-shadow: 8px 8px 5px #688;
border-style: dashed;
border-width: thin;
}
.ul_toc {
list-style: none;
}
.div_after_toc {
padding-bottom: 50px;
}
Usage
To link inside same page need to write it with next format: [link](#Section name) - url-part consists any section name of current page with leading # sign. For linking between different pages format is same but before # sign add path to page (relative or absolute): [link](/wiki/pagename#Section name)
To hide TOC for some separate page put tag "<NOTOC>" in any place in source of page.