I usually set markup.highlight.noclasses = false and put a Chroma stylesheet in the webpage. However, I noticed that these CSS classes are showing up in Atom feeds, and when they’re rendered in a feed reader, they’ll be meaningless.
It would be useful to be able to set noclasses=true and specify which Chroma scheme to use for styles, so the content will display the same in HTML and Atom outputs. Or have the ability to do that for specific output formats like Atom, so HTML output can still leverage classes from stylesheets.
[markup.highlight]
style = 'gruvbox-light' # change this if you want RSS feed to have different style
noClasses = false
The HTML output format will use classes plus a stylesheet generated by hugo gen chromastyles --style foo, while the RSS output format uses inline styles instead of classes.
@jmooring Thanks, but unfortunately that appears to only apply to the rendering of the content of the page generating the XML output, not the rendering of the content of its subpages. In other words, I see styles for the home page’s content, but I still see classes for pages “under” the home page in the feed. Perhaps I’m missing something?
Is there a way to manually render page content within the context of another output type?
For reference, I have in render-codeblock.atom.xml:
git clone --single-branch -b hugo-forum-topic-53759 https://github.com/jmooring/hugo-testing hugo-forum-topic-53759
cd hugo-forum-topic-53759
hugo server
I see styles instead of classes for both section content and subpage content in http://localhost:1313/posts/atom.xml, where I expected the section content to have classes because hugo.config has noClasses = false and the subpage content to have styles because render-codeblock.atom.xml has merge .Options (dict "noClasses" true):
It sounds to me like you didn’t build the site as I asked.
I did, but I curled the atom feed, which wasn’t there, so I copied over the atom config. My mistake. The behavior is the same either way.
Given my previous comment, it seems that merge .Options (dict "noClasses" true) does apply to the parent and child pages, which makes sense.
So why was I still seeing classes in subpages? Well, it turns out it was only certain subpages which used shortcodes that were essentially just a wrapper around {{ highlight $content $lang $options }}. If I set $options to (dict "noclasses" true) in my own highlight shortcode, then the classes disappear in the feed as expected. I see classes for content from {{< highlight html >}} and {{< css.inline >}} too.
So now the question becomes: How can I get the highlight function to use the highlighting options of the render code block template of the current output format, or at least manually set noclasses=true in the options passed to the highlight function for certain output formats? I can change my highlight shortcode to do that, but how would it determine the current output format?
Just out of curiousity, why wouldn’t you simply click on the easy-to-use links that I provided on the home page?
I didn’t have the browser tab open in front of me, so I didn’t know there was a link. Safari doesn’t display feed XML files, it just prompts to download it, so I couldn’t have used it anyway. I was already debugging with an exampleSite and curl, so I just killed hugo server and re-ran it on your repo.
Shortcodes have a lookup order too.
Ah, gotcha. I was able to do the right thing in my own shortcode by copying code.html to code.xml and setting noclasses=true there.
Still, that doesn’t handle other shortcodes like the built-in ones mentioned above, and that would be useful.