Kaushal Modi
Kaushal Modi
@simonthum I'll need an example SVG that I can use to reproduce this issue so that I can test and fix it.
I'll need to think this through. For now, we'll need to just manually copy the images referenced in the front-matter params. I'd like to have a generic design so that...
> having to manually copy only some images and some other not is quite weird. I am not denying that. Instead of parsing for specific custom params, I am thinking...
> Should it be possible for the weight field to have the same values for several files Yes, right now, multiple files can have the same weight if they are...
The workaround is to simply always set the `scope` to `nil` on this line: https://github.com/kaushalmodi/ox-hugo/blob/9faa9fc6d80422b59be828cb911d7ff9c0178b77/ox-hugo.el#L3586
So this is the second request I got for this .. thinking of adding an option for this. Though, it will be a little bit as I am on vacation...
@jave You probably read my first post in this thread but by setting the `scope` to `nil`, you will now get this artifact as I mentioned in point 2 in...
We already have `org-hugo-special-block-type-properties`. May be introduce a new property to the plist called `:front-matter`. User config will then look like: ```emacs-lisp (with-eval-after-load 'ox-hugo (add-to-list 'org-hugo-special-block-type-properties '("announcement" . (:front-matter "announcement"))))...
## Specification ### Variable - New key `:front-matter` in `org-hugo-special-block-type-properties` ### Example ```emacs-lisp (with-eval-after-load 'ox-hugo (add-to-list 'org-hugo-special-block-type-properties '("announcement" . (:front-matter "announcement")))) ``` ### Usage - Valid usage: The Org special...
@pdcawley Kind of related .. `ox-hugo` now supports parsing LOGBOOK drawer notes to front-matter. See https://github.com/kaushalmodi/ox-hugo/pull/504 for examples, documentation and code if you are interested. After that PR, I wonder,...