Common technician actions
Markdown-first site structure
Store new content as Markdown pages so Jekyll automatically applies the shared layout and styling:
.
├── _config.yml
├── _layouts/
│ └── default.html
├── assets/
│ └── css/site.css
├── docs/
│ ├── my-section.md
│ ├── images/
│ ├── data/
│ └── pdfs/
│ └── index.md
└── index.md
Linking and embedding media
- Link to PDFs and downloads with normal Markdown links.
- Embed images with Markdown image syntax.
- Reference JSON or other raw assets using relative links for field troubleshooting artifacts.
- Use HTML embeds only when needed for iframes or objects; the shared CSS will keep them responsive.