From 89ae5215d4fa39438bd94c1c48f10a960e5a2132 Mon Sep 17 00:00:00 2001 From: "dev.daminik00" Date: Tue, 28 Oct 2025 23:29:46 +0100 Subject: [PATCH] add md --- TEST_MARKDOWN.md | 55 ------------------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 TEST_MARKDOWN.md diff --git a/TEST_MARKDOWN.md b/TEST_MARKDOWN.md deleted file mode 100644 index 72459e2..0000000 --- a/TEST_MARKDOWN.md +++ /dev/null @@ -1,55 +0,0 @@ -# Test Markdown Content - -This is a test file to verify markdown parsing improvements. - -## Escaped Characters Test - -**Rule \#6: Set boundaries—and respect them.** - -This should show #6 as text, not as a header. - -### Header Without Space -###This should also work as a header - -## Bold and Italic - -**This is bold text** -*This is italic text* -**Bold with \*escaped\* asterisks inside** - -## Lists - -- Item 1 -- Item 2 -- Item 3 - -1. First item -2. Second item -3. Third item - -## Code - -Inline `code` example. - -```javascript -function example() { - console.log("Hello World"); -} -``` - -## Links - -[Click here](https://example.com) to visit example. - -## Blockquotes - -> This is a blockquote with some text. - -## Horizontal Rule - ---- - -## Special Characters - -Em dash: — (this is different from hyphen -) -Escaped asterisk: \* should show as asterisk