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 78590cd commit 62daedeCopy full SHA for 62daede
.github/workflows/main.yml
@@ -22,9 +22,13 @@ jobs:
22
sudo apt-get install -y pandoc texlive-xetex texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra tree
23
24
- name: Generate documentation tree in Markdown
25
- run: |
26
- tree doc -I 'node_modules|.git' -L 2 --noreport --charset ascii --prune --matchdirs --ignore-case -P '!*.md|!*.docx' > tree.md
+ run: |
+ tree doc -I 'node_modules|.git' -L 2 --noreport --charset ascii > tree.md
27
28
+ - name: Remove file extensions from tree.md
29
30
+ sed -i 's/\(.*\)\.[^.]*$/\1/' tree.md
31
+
32
- name: Format tree.md for Markdown
33
run: |
34
sed -i 's/^/ /' tree.md
0 commit comments