Markdown Demo

This is the part of the post that will appear as the excerpt.

Fresher than you, I’m fresher than you. Foot up, my foot up. Man this here like rollin’ dice. Boy, I’m drinkin’, park it in my lot, 7-11. Legs movin’ side to side. I know you care. Flexin’ while my hands up. Smack it, smack it in the air. Man this here like rollin’ dice. Ooh wee BB freaky deaky. Nefertiti, edges kinky. Wave your hands side to side. Clap, clap, clap, clap, clap it. Don’t you drop that alcohol. Rock that kufi[1], dye dashiki[2]. Fresher than you™.

Wave your hands side to side, put it in the air. Girl, I’m tryna kick it with ya. Clap, clap, clap, like you don’t care. (I know you care)

I know I’m thinkin’ bout that alcohol. Spinnin’ while my hands up then I’m tippin’ all my hands up. Legs movin’ side to side. Never drop that alcohol. I’m spinnin’, I’m spinnin’, I’m spinnin’ while my hands up (drank). Here is an inline note.[3] Rock that kufi, dye dashiki. Mad 'cause I’m so fresh. Smack it, smack it in the air, smack it, smack it in the air. I spin around, and I kick it with ya.


Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • I’m spinnin’
      • I’m spinnin’
      • I’m spinnin’ while my hands up
  • Very easy!

Ordered

  1. Clap
  2. Clap
  3. Clap like you don’t care
  4. You can use sequential numbers…
  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. seven
  2. eleven

Tables

Lyric Notes
Rock that kufi, dye dashiki A dashiki is a colorful garment widely worn in West Africa that covers the top half of the body.
Nefertiti, edges kinky Queen Nefertiti was one of the greatest rulers to preside over Egypt and one of the most beautiful women in history
This trick about to go off A trick is a flirty, coquette-ish woman who gets around.

Code

Syntax highlighting

// Add above your Eleventy config
const markdownIt = require("markdown-it");

// Add within your config module
const md = new markdownIt({
  html: true,
});

eleventyConfig.addFilter("markdown", (content) => {
  return md.render(content);
});

  1. Here is the footnote. ↩︎

  2. Here’s one with multiple blocks.
    Subsequent paragraphs are indented to show that they belong to the previous footnote. ↩︎

  3. Inlines notes are easier to write, since you don’t have to pick an identifier and move down to type the note. ↩︎