diff options
author | Niklas Fasching <[email protected]> | 2019-06-04 12:21:25 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2019-06-08 10:13:00 +0200 |
commit | b6867bf8068fcaaddf1cb7478f4d52a9c1be1411 (patch) | |
tree | 2229d8788d26498cfd569904f442a0510e490b2c /docs | |
parent | 9df57154ee3e3185d024bfe376101b404d8b7cc4 (diff) | |
download | hugo-b6867bf8068fcaaddf1cb7478f4d52a9c1be1411.tar.gz hugo-b6867bf8068fcaaddf1cb7478f4d52a9c1be1411.zip |
Improve Org mode support: Replace goorgeous with go-org
Sadly, goorgeous has not been updated in over a year and still has a lot of
open issues (e.g. no support for nested lists).
go-org fixes most of those issues and supports a larger subset of Org mode
syntax.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/en/content-management/formats.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/content-management/formats.md b/docs/content/en/content-management/formats.md index b65d9e604..158f34199 100644 --- a/docs/content/en/content-management/formats.md +++ b/docs/content/en/content-management/formats.md @@ -19,7 +19,7 @@ toc: true **Markdown is the main content format** and comes in two flavours: The excellent [Blackfriday project][blackfriday] (name your files `*.md` or set `markup = "markdown"` in front matter) or its fork [Mmark][mmark] (name your files `*.mmark` or set `markup = "mmark"` in front matter), both very fast markdown engines written in Go. -For Emacs users, [goorgeous](https://github.com/chaseadamsio/goorgeous) provides built-in native support for Org-mode (name your files `*.org` or set `markup = "org"` in front matter) +For Emacs users, [go-org](https://github.com/niklasfasching/go-org) provides built-in native support for Org-mode (name your files `*.org` or set `markup = "org"` in front matter) But in many situations, plain HTML is what you want. Just name your files with `.html` or `.htm` extension inside your content folder. Note that if you want your HTML files to have a layout, they need front matter. It can be empty, but it has to be there: |