Skip to content
Your Name
Menu

Writing

Technical1 min read

Markdown Style Guide

A sample of Markdown syntax used to verify typography, tables, code, and quotes in this portfolio.

  • markdown
  • reference

Here is a sample of some basic Markdown syntax that can be used when writing Markdown content in Astro.

Headings

The following HTML <h1>β€”<h6> elements represent six levels of section headings. <h1> is the highest section level while <h6> is the lowest.

Paragraph

Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur?

Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.

Images

blog placeholder

Blockquotes

Don’t communicate by sharing memory, share memory by communicating.

β€” Rob Pike

Tables

Feature Support
tables βœ“
code βœ“
quotes βœ“

Code Blocks

// JavaScript snippet with syntax highlighting
function greet(name) {
	return `Hello, ${name}!`
}

console.log(greet("world"))

Inline code looks like const value = 42.

Lists

Unordered:

  • Reliability
  • Clarity
  • Maintainability

Ordered:

  1. Understand the problem
  2. Choose the simplest workable design
  3. Validate with reality

Comments

Signed in with GitHub. Discussion is stored as a GitHub issue.