Open
Description
REPRODUCTION
- Clone the perun repo
- cd into
examples/blog
- Run
boot build
EXPECTED
- atom.xml should be produced using the
:original
keyword as a filterer
ACTUAL
- atom-feed states there were no files to output
- No atom.xml file is emitted
More Context
-
The blog example sets the filterer to
:original
, without that option it works as expected. -
The markdown task should be setting
:original true
as a meta option along with:include-rss
andinclude-atom
. -
May have to do with this line https://github.com/hashobject/perun/blob/master/src/io/perun.clj#L257 which could be removing the
:original
attribute from the map.final-meta (into (map #(dissoc % :rendered :original) output-meta) passthru-meta)