LogSource/arise-source/test/index.md
Jose Falanga 3b611e995b
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run
sample markdown to test styles
2025-10-13 18:30:39 -03:00

1 KiB

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.


Internal link
External link

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

Check image border radius, spacing, and responsiveness.


Code Blocks

Inline code

Use `inline code` inside text.

Fenced code block

# Bash example
echo "Hello, world!"
for file in *.txt; do
    echo "Processing $file"
done