From b58d8c2106d702fed4478c29b4b720f6e0d8fb82 Mon Sep 17 00:00:00 2001 From: Jose Falanga Date: Mon, 13 Oct 2025 18:36:47 -0300 Subject: [PATCH] full test --- arise-source/test/styles/index.md | 61 ++++++++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) diff --git a/arise-source/test/styles/index.md b/arise-source/test/styles/index.md index 27dffb8..b39ec47 100644 --- a/arise-source/test/styles/index.md +++ b/arise-source/test/styles/index.md @@ -11,6 +11,8 @@ Modified Date:: "2025-10-13" content_header:: "false" rss_hide:: "true" ---- END ARISE \\ DO NOT MODIFY THIS LINE ----> + + # Sample Markdown Test Welcome to the **Markdown style test** for your library-themed site. @@ -77,4 +79,61 @@ echo "Hello, world!" for file in *.txt; do echo "Processing $file" done -``` \ No newline at end of file +``` + +### Syntax Highlight Example (if using spans) +```javascript +// JavaScript example +function greet(name) { + console.log("Hello, " + name); +} +``` + +--- + +## Horizontal Rules + +--- + +End of section separator + +--- + +## Blockquotes + +> This is a blockquote. +> +> Multiple lines are supported. +> +> Nested example: +> +> > Inner quote. + +--- + +## Tables + +| Syntax | Description | Notes | +|--------|-------------|-------| +| Header | Title | Can include multiple lines | +| Cell | Text | Styling applies to td and th | +| Row | Example | Check borders and text color | + +--- + +## Misc Elements + +- Footnotes[^1] +- Task list: + - [x] Done item + - [ ] Pending item +- Emoji: 😃 📚 🔖 + +[^1]: This is a footnote example. + +--- + +## End of Test File + +This file tests all **common Markdown elements**. +Make sure code, blockquotes, headings, links, lists, images, tables, and horizontal rules render correctly with your new color palette. \ No newline at end of file