From 3b611e995b8c722481aea033a47259c88b04047c Mon Sep 17 00:00:00 2001 From: Jose Falanga Date: Mon, 13 Oct 2025 18:30:39 -0300 Subject: [PATCH] sample markdown to test styles --- arise-source/test/index.md | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 arise-source/test/index.md diff --git a/arise-source/test/index.md b/arise-source/test/index.md new file mode 100644 index 0000000..096f747 --- /dev/null +++ b/arise-source/test/index.md @@ -0,0 +1,67 @@ +# Sample Markdown Test + +Welcome to the **Markdown style test** for your library-themed site. +This file includes headings, text formatting, lists, links, images, code, blockquotes, tables, and horizontal rules. + +--- + +## Text Styles + +**Bold text** +*Italic text* +***Bold + Italic*** +~~Strikethrough~~ +`Inline code` +> Blockquote text for testing. The border and color should reflect your library style. + +--- + +## Links + +[Internal link](/posts) +[External link](https://spectrasecu.re) + +Hover over links to see color transition. + +--- + +## Lists + +### Unordered List +- Item 1 +- Item 2 + - Nested item +- Item 3 + +### Ordered List +1. First +2. Second +3. Third + 1. Nested first + 2. Nested second + +--- + +## Images + +![Sample image](https://via.placeholder.com/300x150) + +Check image border radius, spacing, and responsiveness. + +--- + +## Code Blocks + +### Inline code + +Use `` `inline code` `` inside text. + +### Fenced code block + +```bash +# Bash example +echo "Hello, world!" +for file in *.txt; do + echo "Processing $file" +done +``` \ No newline at end of file