Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 4646030

Browse files
committed
Add FAQ.md
1 parent e26986b commit 4646030

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

doc/FAQ.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Frequently Asked Questions
2+
3+
## Development
4+
5+
### Install dependencies
6+
7+
```shell
8+
sudo apt-get install ruby ruby-dev rubygems build-essential
9+
10+
sudo apt-get install snapcraft
11+
sudo gem install --no-document fpm
12+
```
13+
14+
### Preview man file
15+
16+
```shell
17+
pandoc -s -t man md/trim.1.md | man -l -
18+
```
19+
20+
### Normalize .md files
21+
22+
```shell
23+
for m in man/md/*.md; do
24+
pandoc -s --atx-headers --wrap=none --normalize -t markdown -o "${m}.norm" "${m}"
25+
done
26+
```
27+
28+
### Normalize README.md
29+
30+
```shell
31+
pandoc -s --atx-headers --wrap=none --normalize -t markdown_github -o README.gfm README.md
32+
```

0 commit comments

Comments
 (0)