2018-05-06 15:52:37 +00:00
|
|
|
+++
|
|
|
|
title = "Markdown Hugo Exporter"
|
|
|
|
author = ["Óscar Nájera"]
|
|
|
|
draft = false
|
|
|
|
weight = 1005
|
|
|
|
+++
|
|
|
|
|
|
|
|
If your target is not a PDF file but a website, this exporter extends the
|
|
|
|
[ox-hugo](https://ox-hugo.scripter.co/) exporter backend. So be sure to install that too.
|
|
|
|
|
|
|
|
To export, there is nothing fancy to keep track of, but as an example I
|
|
|
|
exclude some tags during export.
|
|
|
|
|
|
|
|
```emacs-lisp
|
|
|
|
(let ((org-export-exclude-tags '("noexport" "latexonly")))
|
|
|
|
(org-export-to-file 'hugocv "hugocv.md"))
|
|
|
|
```
|
|
|
|
|
2018-07-15 23:26:21 +00:00
|
|
|
You are responsible for styling your website. Icons used here use
|
|
|
|
FontAwesome 5.
|