# Formatting

Markdown .md pages are plain text documents with a simple human readable syntax that aims to make writing for the internet easier.

No special software is required to create an .md file. Any basic text editor will do. Just save the file with a .md file extension.

Please see markdownguide.org for a full demonstration of the formatting possibilities and best practices.


# Edit page

To modify a page, simply navigate to the page you'd like to edit and click on "Edit this page." Make your desired changes and then submit a request for the modifications to be applied. You can also find more information about the page configuration here.


# Quick start

The following sample demonstrates a very basic .md page sample with page title and one paragraph.

# Page title here

This is a paragraph.

We can build on the above sample by adding more content and formatting, such as bold text, images, and lists.

# Page title here

This is a paragraph.

Both [internal](README.md) and [external](https://example.com) links work.

![Your logo](logo.png)

Another paragraph with **bold**, _italic_, ~~strikethrough~~, and `code` samples.

---

## Lists

- First item
- Second item
- Third item

1. First item
2. Second item
3. Third item

> "Cool! This is a quotation."

!!!
Need to draw attention to something? Use an alert.
!!!

At a very basic level, to create a new page for your Retype project, do the following:

  1. Make a readme.md file
  2. Add a # title
  3. Start writing

# Home page

Ideally, your project will include a default file (readme.md, index.md, or default.md) within the root of the project. If a default file is present within the root folder, Retype will use that page as your home page. Clicking on the top-left logo or title will navigate to the home page.

Those default files can also be placed inside of any folder within the project. Given the following folder and file structure, where Guides is a folder...

|-- Guides
    |-- readme.md
    |-- getting-started.md
|-- readme.md

...Retype will create three pages in your website and the pages will be available at the following locations:

  1. /
  2. /guides/
  3. /guides/getting-started/

# Components

In addition to the standard Markdown options, Retype includes many custom components so you can easily add extra 💎 flair 💎 to your document.

The most commonly used Retype components include Alert and Tab:

# Alert

Sample Alert component
!!!
This is an Alert
!!!

# Tab

This is Tab 1

This is another Tab

Sample Tab component
+++ Tab 1
This is Tab 1
+++ Tab 2
This is another Tab
+++

See all components
https://retype.com/components/readme.md