Option to apply GitHub flavored markdown to process md files

I would like to know if there is a way to apply GitHub flavored markdown when building in Hugo with docdock theme. Thanks in advance

My website has bunch of anchors to different sections in a page. After building with Hugo and docdock theme they are not working.

Example:

1. [heading_1](#heading1)
2. [CPU%Too_High](#cputoohigh)
3. [Third Heading](#third-heading)

After building the site the anchors are created as below.

#heading-1
#cpu-too-high
#third-heading

You can specify the anchors as you like…

## heading_1 {#heading1}
asdf

## CPU%Too_High {#cputoohigh}
asdf

## Third Heading {#third-heading}
asdf

You cannot apply the GFM style anchor generation as Hugo uses Blackfriday (another flavor of md processing like GFM)… but you can specify/override the anchors to your wish as shown above.


Related

1 Like

Got it… Thanks @kaushalmodi

You’re welcome.

I’ve now documented this as well: