Primary image
This image should render full width within the article column and respect the content width.
Inline image with caption
Code blocks
# capture a 60s window of DNS queries
sudo tcpdump -i eth0 -s0 -w /tmp/dns.pcap port 53
from collections import Counter
with open("queries.txt") as f:
counts = Counter(line.strip() for line in f)
for domain, hits in counts.most_common(10):
print(hits, domain)
Callouts
Use this note style for stable guidance or assumptions.
Use the warning style for active risks or unsafe defaults.
Headings for TOC
Validation notes
Check that this subheading appears in the table of contents with indenting.