Inline markup attributed not working for paragraphs

Hi
As new hugo supports adding attributes to list and paragraphs also as mentioned here in attributes section but when I add class attribute to a paragraph it doesn’t work

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Neque explicabo, perspiciatis molestias pariatur repellat sit porro voluptate veritatis, excepturi quod voluptatibus officiis vero distinctio? Deleniti ipsa nihil sunt at soluta?
{.bg-black}

The output is

I tried placing {.bg-black} above on start/end as well but it doesn’t work. Also tried for lists and not working. I tried for headings it did.

Hugo version
image

My version is 0.83.1 while feature is in 0.81 so it’s weird.

Config

baseURL: "http://example.org/"
languageCode: "en-us"
title: "Site Title"
paginate: 6params:
# build and other other setup
build:
  writeStats: true
markup:
  goldmark:
    renderer:
      unsafe: true
  tableOfContents:
    endLevel: 2

Thank you for your response.

https://gohugo.io/getting-started/configuration-markup#configure-markup

[markup.goldmark.parser.attribute]
block = false  <-- change this to true
title = true

please mention in docs as well. TY

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.