From 87b750875ffdcf50d9c1a0ebc288b9cb5edc4801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:43:26 +0100 Subject: [PATCH] chore: change code bloc syntax as no longer rendered properly --- .github/ISSUE_TEMPLATE/bug_report.yml | 48 +++++++++++++-------------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index cccaad7d6a..12c0c05fed 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -29,31 +29,29 @@ body: You can share a Quarto document using the following syntax, _i.e._, using more backticks than you have in your document (usually four ` ```` `). For example with Quarto CLI >=1.5: - `````md - ````qmd - --- - title: "Reproducible Quarto Document" - format: html - engine: jupyter - --- - - This is a reproducible Quarto document using `format: html`. - It is written in Markdown and contains embedded Python code. - When you run the code, it will produce a message. - - ```{python} - print("Hello, world!") - ``` - - ![An image]({{< placeholder 600 400 >}}){#fig-placeholder} - - {{< lipsum 1 >}} - - A reference to @fig-placeholder. - - The end. - ```` - ````` + ````qmd + --- + title: "Reproducible Quarto Document" + format: html + engine: jupyter + --- + + This is a reproducible Quarto document using `format: html`. + It is written in Markdown and contains embedded Python code. + When you run the code, it will produce a message. + + ```{python} + print("Hello, world!") + ``` + + ![An image]({{< placeholder 600 400 >}}){#fig-placeholder} + + {{< lipsum 1 >}} + + A reference to @fig-placeholder. + + The end. + ```` - type: textarea attributes: