mirror of
https://codeberg.org/hyperreal/techne
synced 2024-11-01 14:23:06 +01:00
Add hugo.org
This commit is contained in:
parent
87abce1d5e
commit
b7049ae203
@ -18,6 +18,7 @@ This is a collection of notes on tech and other things. Intended audience: mostl
|
|||||||
- [[file:firewalld.org][Firewalld]]
|
- [[file:firewalld.org][Firewalld]]
|
||||||
- [[file:gitlab.org][GitLab]]
|
- [[file:gitlab.org][GitLab]]
|
||||||
- [[file:grafana.org][Grafana]]
|
- [[file:grafana.org][Grafana]]
|
||||||
|
- [[file:hugo.org][Hugo]]
|
||||||
- [[file:internet-archive.org][Internet Archive]]
|
- [[file:internet-archive.org][Internet Archive]]
|
||||||
- [[file:kernel.org][Kernel]]
|
- [[file:kernel.org][Kernel]]
|
||||||
- [[file:lemmy.org][Lemmy]]
|
- [[file:lemmy.org][Lemmy]]
|
||||||
|
43
hugo.org
Normal file
43
hugo.org
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
#+TITLE: Hugo
|
||||||
|
|
||||||
|
** Org Mode to Hugo
|
||||||
|
*** Text formatting
|
||||||
|
| Org Mode | Comments |
|
||||||
|
|--------------------+---------------------+
|
||||||
|
| `*Bold text*` | Bold text |
|
||||||
|
| `/Italic text/` | Italic text |
|
||||||
|
| `_Underline_` | Underline text |
|
||||||
|
| `=Verbatim=` | Verbatim text |
|
||||||
|
| `+Strike-through+` | Strike-through text |
|
||||||
|
|
||||||
|
*** Adding images
|
||||||
|
#+BEGIN_SRC org
|
||||||
|
=#+ATTR_HTML:= :width 100% :height 100% :class border-2 :alt Description :title Image title
|
||||||
|
=[[./path/to/image.jpg]]=
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
*** Adding metadata
|
||||||
|
#+BEGIN_SRC org
|
||||||
|
=#+TITLE:= Your title
|
||||||
|
=#+DATE:= 2024-10-22
|
||||||
|
=#+TAGS[]:= hugo org-mode writing
|
||||||
|
=#+DRAFT:= false
|
||||||
|
=#+AUTHOR:= hyperreal
|
||||||
|
=#+SLUG:= your-title
|
||||||
|
=#+DESCRIPTION:= Description
|
||||||
|
=#+CATEGORIES:= blogging
|
||||||
|
=#+IMAGES[]:= /images/image.jpg
|
||||||
|
=#+WEIGHT:= 10
|
||||||
|
=#+LASTMOD:= 2024-10-23
|
||||||
|
=#+KEYWORDS[]:= hugo org-mode tutorial
|
||||||
|
=#+LAYOUT:= post
|
||||||
|
=#+SERIES:= Techne
|
||||||
|
=#+SUMMARY:= Summary
|
||||||
|
=#+TYPE:= Tutorial
|
||||||
|
|
||||||
|
=* Main content=
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
#+BEGIN_QUOTE
|
||||||
|
Note: tags must not contain spaces. Use underscores or en-dashes.
|
||||||
|
#+END_QUOTE
|
Loading…
Reference in New Issue
Block a user