0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00
astro/docs/guides/markdown-content.md
2021-06-27 23:30:57 -07:00

5.8 KiB

layout title
~/layouts/Main.astro Markdown Content

Astro comes with out-of-the-box Markdown support powered by the expansive remark ecosystem.

Remark Plugins

This is the first draft of Markdown support! While we plan to support user-provided remark plugins soon, our hope is that you won't need remark plugins at all!

In addition to custom components inside the <Markdown> component, Astro comes with Github-flavored Markdown support, Footnotes syntax, Smartypants, and syntax highlighting via Prism pre-enabled. These features are likely to be configurable in the future.

Markdown Pages

Astro treats any .md files inside of the /src/pages directory as pages. These pages are processed as plain markdown files and do not support components. If you're looking to embed rich components in your markdown, take a look at the Markdown Component section.

layout

The only special Frontmatter key is layout, which defines the relative path to an .astro component which should wrap your Markdown content.

src/pages/index.md

---
layout: ../layouts/main.astro
---

# Hello World!

Layout files are normal .astro components. Any Frontmatter defined in your .md page will be exposed to the Layout component as the content prop. content also has an astro key which holds special metadata about your file, like the complete Markdown source and a headings object.

Keep in mind that the only guaranteed variables coming from the content prop object are astro and url. An example of what a blog post content object might look like is as follows:

{
  /** Frontmatter from blog post
  "title": "",
  "date": "",
  "author": "",
  "description": "",
  **/
  "astro": {
    "headers": [],
    "source": ""
  },
  "url": ""
}

The rendered Markdown content is placed into the default <slot /> element.

src/layouts/main.astro

---
const { content } = Astro.props;
---

<html>
  <head>
    <title>{content.title}</title>
  </head>

  <body>
    <slot/>
  </body>
</html>

Astro's Markdown Component

Astro has a dedicated component used to let you render your markdown as HTML components. This is a special component that is only exposed to .astro files. To use the <Markdown> component, within yout frontmatter block use the following import statement:

---
import { Markdown } from 'astro/components';
---

You can utilize this within your .astro file by doing the following:

---
import { Markdown } from 'astro/components';
---

<Layout>
  <Markdown>
    # Hello world!

    The contents inside here is all in markdown.
  </Markdown>
</Layout>

<Markdown> components provide more flexibility and allow you to use plain HTML or custom components. For example:

---
// For now, this import _must_ be named "Markdown" and _must not_ be wrapped with a custom component
// We're working on easing these restrictions!
import { Markdown } from 'astro/components';
import Layout from '../layouts/main.astro';
import MyFancyCodePreview from '../components/MyFancyCodePreview.tsx';

const expressions = 'Lorem ipsum';
---

<Layout>
  <Markdown>
    # Hello world!

    **Everything** supported in a `.md` file is also supported here!

    There is _zero_ runtime overhead.

    In addition, Astro supports:
    - Astro {expressions}
    - Automatic indentation normalization
    - Automatic escaping of expressions inside code blocks

    ```jsx
      // This content is not transformed!
      const object = { someOtherValue };
    ```

    - Rich component support like any `.astro` file!
    - Recursive Markdown support (Component children are also processed as Markdown)

    <MyFancyCodePreview:visible>
      ```jsx
      const object = { someOtherValue };
      ```
    </MyFancyCodePreview:visible>
  </Markdown>
</Layout>

Remote Markdown

If you have Markdown in a remote source, you may pass it directly to the Markdown component through the content attribute. For example, the example below fetches the README from Snowpack's Github repository and renders it as HTML.

---
import { Markdown } from 'astro/components';

const content = await fetch('https://raw.githubusercontent.com/snowpackjs/snowpack/main/README.md').then(res => res.text());
---

<Layout>
  <Markdown content={content} />
</Layout>

There might be times when you want to combine both dynamic, and static markdown. If that is the case, you can nest <Markdown> components with each other to get the best of both worlds.

---
import { Markdown } from 'astro/components';

const content = await fetch('https://raw.githubusercontent.com/snowpackjs/snowpack/main/README.md').then(res => res.text());
---

<Layout>
  <Markdown>
    ## Markdown example

    Here we have some __Markdown__ code. We can also dynamically render content from remote places.

    <Markdown content={content} />
  </Mardown>
</Layout>

Security FAQs

Aren't there security concerns to rendering remote markdown directly to HTML?

Yes! Just like with regular HTML, improper use of the Markdown component can open you up to a cross-site scripting (XSS) attack. If you are rendering untrusted content, be sure to sanitize your content before rendering it.

Why not use a prop like React's dangerouslySetInnerHTML={{ __html: content }}?

Rendering a string of HTML (or Markdown) is an extremely common use case when rendering a static site and you probably don't need the extra hoops to jump through. Rendering untrusted content is always dangerous! Be sure to sanitize your content before rendering it.