mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
docs: add 0.20 to past manuals
This commit is contained in:
parent
63d77131e0
commit
d95ba9c514
7
DOCS.md
7
DOCS.md
@ -7,9 +7,10 @@ title: hledger docs
|
||||
**Official hledger docs:**
|
||||
|
||||
[Installation Guide](INSTALL.html) and [Release Notes](NEWS.html)\
|
||||
**[User Manual](MANUAL.html)** (past versions:
|
||||
[0.19.x manual](0.19/MANUAL.html),
|
||||
[0.18.x manual](0.18/MANUAL.html))\
|
||||
**[User Manual](MANUAL.html)** (and past versions:
|
||||
[0.20](0.20/MANUAL.html),
|
||||
[0.19](0.19/MANUAL.html),
|
||||
[0.18](0.18/MANUAL.html))\
|
||||
[Developer Guide](DEVELOP.html)\
|
||||
[FAQ](FAQ.html)\
|
||||
|
||||
|
5
Makefile
5
Makefile
@ -571,7 +571,10 @@ viewsite: site
|
||||
|
||||
# ensure some old doc versions are in place:
|
||||
|
||||
oldsource: site/0.19 site/0.18
|
||||
oldsource: site/0.20 site/0.19 site/0.18
|
||||
|
||||
site/0.20:
|
||||
git archive --prefix site/0.20/ tags/0.20 '*.md' | tar xf -
|
||||
|
||||
site/0.19:
|
||||
git archive --prefix site/0.19/ tags/0_19_3 '*.md' | tar xf -
|
||||
|
2
site/site.hs
Normal file → Executable file
2
site/site.hs
Normal file → Executable file
@ -23,7 +23,7 @@ main = do
|
||||
route idRoute
|
||||
compile compressCssCompiler
|
||||
match "templates/*" $ compile templateCompiler
|
||||
match ("*.md" .||. "0.19/*.md" .||. "0.18/*.md") $ do
|
||||
match ("*.md" .||. "0.20/*.md" .||. "0.19/*.md" .||. "0.18/*.md") $ do
|
||||
route $ setExtension "html"
|
||||
compile $
|
||||
pandocCompilerWith
|
||||
|
Loading…
Reference in New Issue
Block a user