Dette er en migrasjon av OW4's artikler fra Django-modeller til jekyll.
Burde ikke være nødvendig å kjøre etter første import.
cd scripts
deno run --allow-net --allow-write=../_posts,../assets import.ts
See jekyll-docs for prerequisits.
bundle exec jekyll serve
See Creating posts. Before
the markdown-content, you should paste this default FrontMatter
:
---
title: "En god artikkel"
layout: artikkel
tags:
- skrive
- dotkom
date: "2021-06-08T18:00:00+02:00"
modified_date: "2021-06-08T17:56:56.973584+02:00"
image: "/assets/<SETT INN ET BILDE HER>.png"
image_alt: "Beskrivende tekst av bildet for folk som ikke kan se"
author:
- Kari Nordmann
ingress:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
excerpt: "Lorem Ipsum Dolor Sit amet."
slug: "en-god-artikkel" # MÅ VÆRE IDENTISK MED FILNAVNET, og være en gyldig del av en URL
photographer: "Ola Nordmann" # Photograf bak bildet
# Kan også ha video:
# video: <VIMEO-ID>
---
In terms of available Markdown-features, we use CommonMark, which sadly does lack certain features like footnotes.
We use pre-commit, to run e.g. markdownlint and
formatting with Prettier. You can install pre-commit
with e.g.
brew install pre-commit
then run pre-commit install
to run the hooks before
every commit. You can also manually run it by using the following command:
pre-commit run --all-files