mirror of
https://github.com/xmonad/xmonad.git
synced 2025-08-01 20:51:55 -07:00
Update util/GenerateManpage to be pandoc-1.4 compatible
This commit is contained in:
@@ -76,19 +76,23 @@ main = do
|
|||||||
. lines
|
. lines
|
||||||
<$> readFile "./man/xmonad.1.markdown"
|
<$> readFile "./man/xmonad.1.markdown"
|
||||||
|
|
||||||
|
Right template <- getDefaultTemplate "man"
|
||||||
writeFile "./man/xmonad.1"
|
writeFile "./man/xmonad.1"
|
||||||
. (manHeader ++)
|
. (manHeader ++)
|
||||||
. writeMan writeOpts
|
. writeMan writeOpts{ writerStandalone = True, writerTemplate = template }
|
||||||
$ parsed
|
$ parsed
|
||||||
putStrLn "Documentation created: man/xmonad.1"
|
putStrLn "Documentation created: man/xmonad.1"
|
||||||
|
|
||||||
|
Right template <- getDefaultTemplate "html"
|
||||||
writeFile "./man/xmonad.1.html"
|
writeFile "./man/xmonad.1.html"
|
||||||
. writeHtmlString writeOpts
|
. writeHtmlString writeOpts
|
||||||
{ writerHeader = "<h1>"++releaseName++"</h1>"++
|
{ writerIncludeBefore =
|
||||||
"<p>Section: xmonad manual (1)<br>"++
|
"<h1>"++releaseName++"</h1>"++
|
||||||
|
"<p>Section: xmonad manual (1)<br/>"++
|
||||||
"Updated: "++releaseDate++"</p>"++
|
"Updated: "++releaseDate++"</p>"++
|
||||||
"<hr>"
|
"<hr/>"
|
||||||
, writerStandalone = True
|
, writerStandalone = True
|
||||||
|
, writerTemplate = template
|
||||||
, writerTableOfContents = True }
|
, writerTableOfContents = True }
|
||||||
$ parsed
|
$ parsed
|
||||||
putStrLn "Documentation created: man/xmonad.1.html"
|
putStrLn "Documentation created: man/xmonad.1.html"
|
||||||
|
Reference in New Issue
Block a user