From: Vincent Bernat Date: Mon, 25 Jul 2022 05:31:18 +0000 (+0200) Subject: github: show how to use triple backticks X-Git-Tag: 1.0.15~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72bbcbd98dae1ea4ee625ab77aeb3f840aeec53b;p=thirdparty%2Flldpd.git github: show how to use triple backticks --- diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..9b9ff8d9 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1 @@ +((nix-mode . ((mode . apheleia)))) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 61a25e00..c3c42bf0 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -14,12 +14,14 @@ unlikely it just does not work. Instead, use the questions. When putting code snippets (logs, commands), put them between triple -backquotes: +backticks: +```` ``` # lldpcli -vv [output of lldpcli -vv] ``` +```` # Bug description diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md index 3c15eb29..15dfe799 100644 --- a/.github/ISSUE_TEMPLATE/feature.md +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -5,9 +5,11 @@ labels: "feature request" --- When putting code snippets (logs, commands), put them between triple -backquotes: +backticks: +```` ``` # lldpcli -vv [output of lldpcli -vv] ``` +````