Skip to content

Authoring content

Tech Docs content is written in Markdown which is a markup language used for formatting plain text that aims to be easy to read and write.

Tech Docs uses GitHub-flavored Markdown, a variant of Markdown syntax, and SmartyPants, a typographic punctuation plugin. These tools provide authors niceties like generating clickable links from text, creating lists and tables, formatting for quotations and em-dashes, and more.

Commonly-used Markdown syntax

Common use of Markdown throughout Tech Docs includes:

Headings

Start a new line with between 2 and 6 # symbols, followed by a single space, and then the heading text.

## Example second-level heading

The number of # symbols corresponds to the heading level in the document hierarchy. The first heading level is reserved for the page title (available in the page frontmatter). Therefore the first authored heading on every page should be a second level heading (##).

example.md
## Second level heading
Notice the page starts with a second level heading.
Notice the blank lines above and below each heading.
### Third level heading
This is demo text under the Third level heading section.
#### Fourth level heading
##### Fifth level heading
###### Sixth and final level heading

Create a link by wrapping the link text in brackets ([ ]) followed by the external link URL, or internal link path, wrapped in parentheses (( )).

[text](URL or path)

There should be no space between the wrapped text and URL. When linking to an internal Tech Docs page, use the relative path from the current page, and omit the page file extension (.md).

example.md
Here's an internal link to the [releases page](../development/releases).
Here's an [external link](https://github.com/archivesspace/tech-docs).

Emphasizing text

Wrap text to be emphasized with _ for italics, ** for bold, and ~~ for strikethrough.

example.md
_Italicized_ text
**Bold** text
**_Bold and italicized_** text
~~Strikethrough~~ text

Paragraphs

Create paragraphs by leaving a blank line between lines of text.

example.md
This is one paragraph.
This is another paragraph.

Lists

Precede each line in a list with a dash (-) for a bulleted list, or a number followed by a period (1.) for an ordered list.

example.md
- Resource
- Digital Object
- Accession
1. Accession
2. Digital Object
3. Resource

Code examples

Wrap inline code with a single backtick (`).

Wrap code blocks with triple backticks (```), also known as a “code fence”, placed just above and below the code. Append the name of the code’s language or its file extension to the first set of backticks for syntax highlighting.

example.md
The `JSONModel` class is central to ArchivesSpace.
```ruby
def h(str)
ERB::Util.html_escape(str)
end
```

Asides

Asides are useful for highlighting secondary or marketing information.

Wrap content in a pair of triple colons (:::) and append one of the aside types (ie: note) to the first set of colons. The aside types are note, tip, caution, and danger, each of which have their own set of colors and icon. Customize the title by wrapping text in brackets ([ ]) placed after the note type.

example.md
:::tip
Become an ArchivesSpace member today! 🎉
:::
:::note[Some custom title]
### Markdown is supported in asides
![Pic alt text](../../../images/example.jpg)
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
:::

Images

Show an image using an exclamation point (!), followed by the image’s alt text (a brief description of the image) wrapped in brackets ([ ]), followed by the external URL, or internal path, wrapped in parentheses (( )).

example.md
![A dozen Krispy Kreme donuts in a box](https://example.com/donuts.jpg)
![The ArchivesSpace logo](../../../images/logo.svg)

Frontmatter

Tech Docs uses YAML frontmatter as a way to add metadata to pages for dynamic purposes. Frontmatter is a block of YAML syntax used to assign variables and more, wrapped in triple dashes (---). Every page must have at least its title defined in frontmatter.

---
title: New page title
---

Image files

All internal image files used in Tech Docs content should go in the src/images directory, located at the root of this project.

Writing conventions

  • Plugins, not plug-ins
  • Titles are sentence-case (“Application monitoring with New Relic”)
  • Page titles prefer ‘-ing’ verb forms (“Using MySQL”, “Serving over HTTPS”)