Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@chrede88 chrede88 released this 08 Dec 17:16
· 8 commits to main since this release
2bbbceb

Breaking Change

  • Bumping minimum hugo version to v0.122.0 extended.

  • Theme major version. go.mod & module.yaml configuration files needs to be updated.
    Change the require line to the following in go.mod:

    require github.com/chrede88/qubt/v2 v2.0.0
    

    Change the module url in module.yaml to:

    imports:
      - path: github.com/chrede88/qubt/v2

    Notice the extra v2 in the path for both files.

Added

  • Added support for Latex rendering
    Use it by setting the following in the frontmatter of the page where it's needed:
    params:
      math: true
    Add the following to your hugo.yaml config in order to get the nessecary markup config for Latex rendering and inline image rendering:
    markup:
      _merge: deep

Go

  • Bumped to v1.23.3