Add hugo.org

This commit is contained in:
Jeffrey Serio 2024-10-22 21:18:43 -05:00
parent 87abce1d5e
commit b7049ae203
2 changed files with 44 additions and 0 deletions

View File

@ -18,6 +18,7 @@ This is a collection of notes on tech and other things. Intended audience: mostl
- [[file:firewalld.org][Firewalld]]
- [[file:gitlab.org][GitLab]]
- [[file:grafana.org][Grafana]]
- [[file:hugo.org][Hugo]]
- [[file:internet-archive.org][Internet Archive]]
- [[file:kernel.org][Kernel]]
- [[file:lemmy.org][Lemmy]]

43
hugo.org Normal file
View 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