We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab7ca4 commit 384e623Copy full SHA for 384e623
.github/workflows/main.yml
@@ -26,13 +26,14 @@ jobs:
26
27
- name: Generate directory tree for doc
28
run: |
29
- tree doc -I '.git' > doc-tree.txt
+ tree doc -I '.git' > doc-tree.md
30
31
- name: Merge Markdown files
32
33
touch combined.md
34
cat doc/readme.md > combined.md
35
- find doc -type f -name "*.md" ! -name "readme.md" | sort | xargs -I {} sh -c 'cat "$@" >> combined.md' _ {}
+ cat doc-tree.md > combined.md
36
+ find doc -type f -name "*.md" ! -name "readme.md" !-name "doc-tree.md" | sort | xargs -I {} sh -c 'cat "$@" >> combined.md' _ {}
37
38
- name: Convert README.md to README.pdf
39
run: pandoc combined.md -o README.pdf --pdf-engine=xelatex
0 commit comments