Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 40cbb71

Browse files
author
kasper
committed
Add a note on older version of pandoc
1 parent f807388 commit 40cbb71

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Documentation/manpages/tool/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,17 @@ sudo pip install pandocfilters
2626
git clone https://github.com/dotnet/cli
2727
./cli/Documentation/manpage/tool/update-man-pages.sh
2828
```
29+
30+
The version of pandoc is printed in first line as code comment in `.1` (manpage) files.
31+
If your version of pandoc is older than (or even equal to) the last modifed version,
32+
please install the latest stable version of pandoc from https://github.com/jgm/pandoc/releases (deb file for Ubuntu):
33+
34+
```sh
35+
wget -q https://github.com/jgm/pandoc/releases/download/$pandocVersion/$pandocVersionedName.deb > /dev/null
36+
# or
37+
# curl -sSLO https://github.com/jgm/pandoc/releases/download/$pandocVersion/$pandocVersionedName.deb > /dev/null
38+
sudo dpkg -i $pandocVersionedName.deb
39+
rm $pandocVersionedName.deb*
40+
```
41+
42+
after that update manpages by calling `update-man-pages.sh` script.

0 commit comments

Comments
 (0)