Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.35 KB

File metadata and controls

63 lines (43 loc) · 1.35 KB

Dracula Theme for Markdown

Sample markdown that exercises the stylesheet, using the official Dracula palette.

Text Formatting

Body copy reads like this. Combine bold, italic, and both when you need emphasis, drop in inline code, and link out with a link.

Blockquotes

The quick brown fox jumps over the lazy dog. Blockquotes pick up the comment tone so long quotations stay readable against the background.

Lists

  • Unordered list item one
  • Unordered list item two
  • Unordered list item three
  1. Ordered list item
  2. Another ordered item
  3. Third ordered item

Code Block

function greet(name) {
  console.log(`Hello, ${name}!`);
  return true;
}

greet("Dracula");

Table

Color Hex Usage
Purple #BD93F9 Headings
Cyan #8BE9FD Links
Green #50FA7B Code
Orange #FFB86C Bold
Yellow #F1FA8C Italic
Pink #FF79C6 Lists

Task List

  • Add the stylesheet to the page
  • Render markdown to HTML
  • Ship the themed docs

Nested Content

Note: Blockquotes can hold richer markup:

  • Lists inside blockquotes
  • With inline code
  • And links

Styled with the official Dracula color specification.