ASTRO INDEX

Lik to test file

This is a dummy file to test your brand new PHP Markdown server and the upload form. If you are reading this in your browser, it works! 🎉

Text Formatting

Markdown allows you to easily write bold text, italic text, and even strikethrough text without touching HTML.

Lists

Here is an unordered list of things to test:

Here is an ordered list:

  1. First step.
  2. Second step.
  3. Third step.

Blockquotes

"Markdown is a lightweight markup language with plain-text-formatting syntax." — John Gruber (Creator of Markdown)

Code Snippets

You can highlight inline code like basename($_GET['file']), or you can create multiline code blocks:


// Just a little test script
function testServer() {
    echo "The server is running perfectly!";
}