From ac8e477589981573166bc26f481b3659227b04fc Mon Sep 17 00:00:00 2001 From: Sogolumbo <33571916+Sogolumbo@users.noreply.github.com> Date: Sun, 2 Nov 2025 19:58:12 +0100 Subject: [PATCH 1/2] Add more complex markdown examples --- examples/testing.md.j2 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/examples/testing.md.j2 b/examples/testing.md.j2 index e91f869..ba53893 100644 --- a/examples/testing.md.j2 +++ b/examples/testing.md.j2 @@ -1,6 +1,40 @@ # whatever +{% set x = y %} + +{% if whatever %} {% for x in whatever %} {{ whatever }} {% endfor %} +{# whatever #} +{% endif %} + +**fat** +**{{ whatever }}** +*italic* +*{{ whatever }}* + +## Lists + +- item +- {{ whatever }} +- {% if whatever %} item {% endif %} + +1. first +2. {{ whatever }} +3. {% if whatever %} item {% endif %} + +> quote +> **quote** +> # quote +> {{ whatever }} +> **{{ whatever }}** +> # {{ whatever }} +> {% if whatever %} item {% endif %} + code block + **does it work** + {{ whatever }} + {% if whatever %} item {% endif %} + > {{ whatever }} + > **{{ whatever }}** \ No newline at end of file From d9359ef95a84f71f10f5106c6d5c29facbdc5b13 Mon Sep 17 00:00:00 2001 From: Sogolumbo <33571916+Sogolumbo@users.noreply.github.com> Date: Sun, 2 Nov 2025 20:03:10 +0100 Subject: [PATCH 2/2] Add more complex html examples --- examples/testing.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/examples/testing.html b/examples/testing.html index c668c24..6948ee9 100644 --- a/examples/testing.html +++ b/examples/testing.html @@ -1,10 +1,22 @@ {% extends %} +{% set x = y %} +{% if whatever %} +{% for x in whatever %} +{{ whatever }} +{% endfor %} +{# whatever #} +{% endif %} +
whatever
{{ does_not('work fine') }} {{ inline_css('inline.css') }} {{ inline_css('inline.css') }}
"whatever"{{ thing }}
-
+
"whatever{{ thing }}"
+
whatever
+
+ {{whatever}} +
\ No newline at end of file