Skip to content

Commit

Permalink
Generate plaintext versions of markdown docs of interest
Browse files Browse the repository at this point in the history
Signed-off-by: Y. Meyer-Norwood <106889957+norwd@users.noreply.github.com>
  • Loading branch information
norwd authored Jan 5, 2025
1 parent 2ebe056 commit 6d0df87
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,15 @@ jobs:
run: |
make -f - << \EOF
all: $(patsubst %.md,%.html,$(wildcard *.md */*.md */*/*.md))
all: $(patsubst %.md,%.html,$(wildcard *.md */*.md */*/*.md)) humans.txt
rm -f header.html
%.html: %.md
pandoc --metadata-file=authors.yaml --template=GitHub.html5 --include-in-header=header.html --from markdown+yaml_metadata_block+backtick_code_blocks+fenced_code_attributes+inline_notes+emoji-implicit_figures --to html --standalone $< --output $@
%.txt: %.md
pandoc -f markdown -t plain --wrap=none $< --output $@
EOF
- name: "Create redirect HTML files"
Expand Down

0 comments on commit 6d0df87

Please sign in to comment.