From 4a018c8742346956cad6dc5d3338ffa7051416b9 Mon Sep 17 00:00:00 2001 From: Deskull Date: Sat, 26 Aug 2017 15:56:27 +0900 Subject: [PATCH] =?utf8?q?#37370=20Pandoc=E7=94=A8=E3=81=AEWEB=E5=85=AC?= =?utf8?q?=E9=96=8B=E5=90=91=E3=81=91HTML=E3=83=86=E3=83=B3=E3=83=97?= =?utf8?q?=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92=E8=BF=BD=E5=8A=A0=E3=80=82?= =?utf8?q?=20/=20Add=20HTML=20template=20for=20web=20page=20by=20Pandoc.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- markdown/template.html | 148 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 markdown/template.html diff --git a/markdown/template.html b/markdown/template.html new file mode 100644 index 000000000..4287b0a3d --- /dev/null +++ b/markdown/template.html @@ -0,0 +1,148 @@ + + + + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ +$if(keywords)$ + +$endif$ + $if(title-prefix)$$title-prefix$ 窶・$endif$$pagetitle$ + +$if(quotes)$ +$endif$ +$if(highlighting-css)$ + +$endif$ +$for(css)$ + +$endfor$ +$if(math)$ + $math$ +$endif$ + +$for(header-includes)$ + $header-includes$ +$endfor$ + + + + $for(include-before)$ + $include-before$ + $endfor$ + +
+ +
+ + $if(title)$ +

$title$

+ $if(subtitle)$ +

$subtitle$

+ $endif$ + $for(author)$ +

$author$

+ $endfor$ + $if(date)$ +

$date$

+ $endif$ +
+ + $endif$ + + + + + +
+ $if(toc)$ + + $endif$ + $body$ + $for(include-after)$ + $include-after$ + $endfor$ +
+ + + +
+ + + + -- 2.11.0