Skip to content

whatrocks/blag

Repository files navigation

blag

charlie's site, built with syte.

Setup

make install

Local development

make serve

Build

make build

Create a post

make post

This creates a new markdown file in pages/.

Handy commands

Add missing /img/ to markdown image paths for one page:

sed 's/!\[\(.*\)](/![\1](\/img\//g' afternoon-with-arduino.md

Add missing /img/ to all markdown files in the current directory:

sed -i -- 's/!\[\(.*\)](/![\1](\/img\//g' *.md

Make targets

Run make help to see the available shortcuts.

Contributors