Discussion/help for any of my projects like ox-hugo, eless, my emacs config, tmux config, other dotfiles
I will keep you posted and dig deeper into your website config.
+1
What I want to do with Hugo, is to have pages and tags as you would normally
have. But in addition to that, I would like the option, of being able to have a
"Talk" page linked to any type of page. So if I have a normal page:
content/sunday/index.md
I would also like the option of making a Talk page:
content/sunday/talk/index.md
that can be accessed from the normal page. This is similar to Talk page on
Wikipedia, or Discussion page with Rosetta Code:
With normal pages, I find that I can do this:
content/sunday/_index.md
Then I am able to add Talk page no problem. However I might also want to add
Talk page to a Taxonomy, like this:
content/tags/talk/index.md
So I tried to implement that by creating:
content/tags/_index.md
but the Talk page is not recognized. Is this something that is possible?
_index.md
on the other hand are branch bundles
_index.md
content/sunday/_index.md
is definitely the right way to go if you want to have a talk/index.md
under content/sunday/
Sorry if it was tricky to explain.
No worries, code is the best way to communicate :D
Heya! :wave: Did anyone setup a CI tool to run (org-hugo-export-wim-to-md :all-subtrees nil nil nil)
on all the .org
files?
In my setup, my links are broken when I run the CI tool but if I export manually in Emacs (using the chord) the links become alright. My setup is with HUGO bundles but managed avoid defining HUGO_BUNDLE
or FILE_EXPORT
.
My brain is going haywire with this :sweat_smile:
(dolist (org-file (directory-files-recursively org-folder "\.org$"))
(with-current-buffer (find-file org-file)
(message (format "[build] Exporting %s" org-file))
(org-hugo-export-wim-to-md :all-subtrees nil nil nil))))
The branch is this one in master
: https://github.com/bphenriques/knowledge-base
If you run locally using make clean build-content serve
and go to Uncategorized -> Lightbend Academy -> Reactive Principles Example - git
you will find a link to Actor Model that should be broken when running locally.
Now.. I found an additional hint.. the link is not broken on the published web-site (see https://bphenriques.github.io/knowledge-base/docs/uncategorized/lightbend-academy/) so it is something broken between the CI emacs installation and my own DOOM emacs :thinking: