# REPRODUCTION 1. Clone the perun repo 2. cd into `examples/blog` 3. 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` and `include-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. ```clojure final-meta (into (map #(dissoc % :rendered :original) output-meta) passthru-meta) ```
REPRODUCTION
examples/blogboot buildEXPECTED
:originalkeyword as a filtererACTUAL
More Context
The blog example sets the filterer to
:original, without that option it works as expected.The markdown task should be setting
:original trueas a meta option along with:include-rssandinclude-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
:originalattribute from the map.