From 80cba856dac8289183ed438222f8713a77d8a5e5 Mon Sep 17 00:00:00 2001 From: "Y. Meyer-Norwood" <106889957+norwd@users.noreply.github.com> Date: Sun, 5 Jan 2025 16:24:42 +1300 Subject: [PATCH] Disable citations extention Signed-off-by: Y. Meyer-Norwood <106889957+norwd@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 164a0a2..fd9d42c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,7 +110,7 @@ jobs: run: gh api "${ENDPOINT}" --template "${TEMPLATE}" | sh | tee humans.md env: ENDPOINT: '/orgs/${{ github.repository_owner }}/repos' - JQ_QUERY: '"- " + (.name // .login) + " aka [@" + .login + "](" + .html_url + ")"' + JQ_QUERY: '"- " + (.name // .login) + " aka [@" + .login + "](" + .html_url + ")"' TEMPLATE: | echo "# Humans to Thank" echo @@ -131,7 +131,7 @@ jobs: 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+shortcut_reference_links+spaced_reference_links+autolink_bare_uris --to html --standalone $< --output $@ + 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+shortcut_reference_links+spaced_reference_links+autolink_bare_uris-citations --to html --standalone $< --output $@ %.txt: %.md pandoc --from markdown --to plain --wrap=none $< --output $@