| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="../../../../docs/style.css">
- <script>
-
- function openDocsPage( page ){
-
- if( page.indexOf( '#' )!=-1 ){
-
- var url='../modules/'+page.replace( ':','/docs/__MANPAGES__/' ).replace( /\#/g,'.md.html#' );
-
- }else{
-
- var url='../modules/'+page.replace( ':','/docs/__PAGES__/' ).replace( /\./g,'-' )+'.html';
- }
-
- document.location.href=url;
-
- return false;
- }
-
- </script>
- </head>
- <body class="docs_body">
- <div class="docs_content">
- <!-- CONTENT -->
- ${CONTENT}
- <!-- END -->
- </div>
- </body>
- </html>
|