the low-speed spoon
← Back to all posts

Markdown Formatting Reference

10/14/2025

MD Guide for Reference

note to self that the main astro prose formatting overrides some of the md formatting



Document Title

Short introduction.

Topic

Content.

Another Topic

More content.




Text formatting

Blockquotes seem to be overwritten by base formatting




Lists - appear to be overwitten

Unordered list

Ordered list

  1. Step one
  2. Step two
    1. Sub-step
  3. Step three



Text Here You Want to Hyperlink
https://armcclain.github.io/ (auto-link)

image of low-speed-spoon logo Images stored in /public/assets can be linked like this.




Code

Inline code: using single tics

Block code fences:

# R example
library(dplyr)
iris %>%
  group_by(Species) %>%
  summarize(across(everything(), mean))

note to self there seems to be some sort of default color formatting that is ugly but not super important rn