File: doc-with-docker.sh

package info (click to toggle)
lf 34%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296 kB
  • sloc: sh: 126; makefile: 23; csh: 4
file content (32 lines) | stat: -rwxr-xr-x 1,281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
# Generates `lf.1` and `doc.txt` from the `doc.md` file.
#
# This script is used to generate a man page and a plain text conversion of the
# markdown documentation using pandoc (https://pandoc.org/). GitHub Flavored
# Markdown (GFM) (https://github.github.com/gfm/) is used for the markdown
# input format. The markdown file is automatically rendered in the GitHub
# repository (https://github.com/gokcehan/lf/blob/master/doc.md). The man page
# file `lf.1` is meant to be used for installations on Unix systems. The plain
# text file `doc.txt` is embedded in the binary to be displayed on request with
# the `-doc` command line flag. Thus the same documentation is used for online
# and terminal display.

[ -z $version ] && version=$(git describe --tags)
[ -z $date ] && date=$(date +%F)

PANDOC_IMAGE=pandoc/minimal:2.11

docker run --rm -v "$PWD:/data" --user "$(id -u):$(id -g)" $PANDOC_IMAGE \
    --standalone \
    --from gfm --to man \
    --metadata=title:"LF" \
    --metadata=section:"1" \
    --metadata=date:"$date" \
    --metadata=footer:"$version" \
    --metadata=header:"DOCUMENTATION" \
    doc.md -o lf.1

docker run --rm -v "$PWD:/data" --user "$(id -u):$(id -g)" $PANDOC_IMAGE \
    --standalone \
    --from gfm --to plain \
    doc.md -o doc.txt