Skip to content
Snippets Groups Projects
Select Git revision
  • ca6b527fae10c35b4150d24d30529740421efbed
  • master default protected
  • debtest
3 results

iptables_default_deny.pp

Blame
  • sitebuilder.pike 447 B
    #include "types.h"
    inherit "html";
    
    SGML wmml_to_html(SGML data)
    {
      return convert(data);
    }
    
    string mkfilename(string section)
    {
      string s=::mkfilename(section);
      return replace(s,".md.html",".html.md");
    }
    
    
    SGML split(SGML data)
    {
      SGML ret=html::split(data);
      foreach(indices(sections),string file)
        {
          sections[file+".md"]=({
    	"string title=\"Pike Manual\";\n"
    	"string template=\"manual.tmpl\";\n"
          });
        }
      return ret;
    }