<Markdown>

The fastest way to inject Markdown into your Vue components.

NOTE: As of Content@2.1.0 this component is deprecated and replaced by <ContentSlot>.

The <Markdown> component makes it easier to use Markdown syntax in your Vue components.

It is useful when creating components that you want to use in your Markdown content.

Props

  • use: The slot to bind on, you must provide a use via $slots.{your_slot} in <template>.
    • Type: Vue slot Function
    • Example: $slots.default
  • unwrap: Whether to unwrap the content or not. This is useful when you want to extract the content nested in native Markdown syntax. Each specified tag will get removed from AST.
    • Type: Boolean or String
    • Default: false
    • Example: 'ul li'

Example

components/FancyHeader.vue
<template>  <h2 class="fancy-header"><Markdown :use="$slots.default" unwrap="p" /></h2></template>
content/index.md
::fancy-headerThat text paragraph will be unwrapped.::
Table of Contents