mirror of
https://gitlab.com/Titan-C/org-cv.git
synced 2024-11-14 10:38:29 +00:00
write about the markdown exporter
This commit is contained in:
parent
c68e09537e
commit
424c68904e
4 changed files with 39 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
baseURL = "https://titan-c.gitlab.io/org-cv/"
|
||||
languageCode = "en-us"
|
||||
title = "Org CV backend export"
|
||||
title = "Org CV"
|
||||
theme = "project-landing-page"
|
||||
|
||||
[params]
|
||||
description = "Org-mode backend exporters for CV"
|
||||
description = "Org-mode backend exporters for Curriculum Vita"
|
||||
author_url = "http://blog.oscarnajera.com"
|
||||
author = "Titan-C"
|
||||
project_url = "https://gitlab.com/Titan-C/org-cv/"
|
||||
|
|
19
doc/content/post/hugo_export.md
Normal file
19
doc/content/post/hugo_export.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
+++
|
||||
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"))
|
||||
```
|
||||
|
||||
You are responsible for styling your website.
|
2
doc/themes/project-landing-page
vendored
2
doc/themes/project-landing-page
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 6e6961e79c564e8f5fd2132aaef3ee111aa14ad4
|
||||
Subproject commit b15f3a4cbaa1df6251708150b750f840f8e625c7
|
17
readme.org
17
readme.org
|
@ -211,6 +211,23 @@ When exporting you can call the following function to get the latex file.
|
|||
</object>
|
||||
#+END_EXPORT
|
||||
|
||||
* Markdown Hugo Exporter
|
||||
:PROPERTIES:
|
||||
:EXPORT_FILE_NAME: hugo_export
|
||||
:END:
|
||||
If your target is not a PDF file but a website, this exporter extends the
|
||||
[[https://ox-hugo.scripter.co/][ox-hugo]] 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.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(let ((org-export-exclude-tags '("noexport" "latexonly")))
|
||||
(org-export-to-file 'hugocv "hugocv.md"))
|
||||
#+END_SRC
|
||||
|
||||
You are responsible for styling your website.
|
||||
|
||||
|
||||
* Local Variables :ARCHIVE:
|
||||
# Local Variables:
|
||||
|
|
Loading…
Reference in a new issue