Skip to content

Releases: cntrump/hugo-notepadium

v1.9.2

31 Dec 05:08
ee8e1c2
Compare
Choose a tag to compare

HAPPY NEW YEAR

  • Allow select Light or Dark theme
  • Allow enable comments globally

Theme style:

  • Auto (default)
    [params]
    style = "auto"
  • Light theme
    [params]
    style = "light"
  • Dark theme
    [params]
    style = "dark"

Enable comments globally:

[params.comments]
enable = true

Note:

value of comments on page always higher than config.toml

v1.9.1

29 Dec 12:57
daa4ecc
Compare
Choose a tag to compare
  • Update DarkMode style
  • Update chroma xcode theme

v1.9.0

28 Dec 09:17
fdd0348
Compare
Choose a tag to compare
  • Support DarkMode

In your config.toml

[params.syntax]
use = "none"
theme = "github"
darkTheme = "xcode-dark"  # apply this theme in dark mode.

v1.8.4

27 Dec 07:48
5a420e1
Compare
Choose a tag to compare
  • Support small screen (less or equal than 320)

v1.8.3

26 Dec 09:49
ec7ce7b
Compare
Choose a tag to compare
  • Reformat all sources

v1.8.2

26 Dec 03:56
9b50cc1
Compare
Choose a tag to compare
  • improve style

v1.8.1

25 Dec 14:40
7c45c92
Compare
Choose a tag to compare
  • Add Katex
  • Update prismjs github theme

Enable Katex for Math:

[params.math]
enable = false # load math globally.  default: false
use = "katex"  # builtin: "katex", "mathjax".  default: "katex"

v1.8.0

25 Dec 06:37
664d64e
Compare
Choose a tag to compare
  • Update text color
  • Update line height
  • Improve render hooks
  • Support HTML code on config.toml
  • Support HTML code on Title

v1.7.1

24 Dec 12:17
9513558
Compare
Choose a tag to compare
  • Update <table> style
  • Update <li> style

v1.7.0

24 Dec 09:51
f1b4e73
Compare
Choose a tag to compare
  • Add Hugo 0.62.0 Markdown render hooks
  • Update Text Color

After upgrade your Hugo verison to 0.62.0, You don't need figure shortcode anymore.

OLD:

{{<figure src="01.png" title="YOUR TITLE">}}

NEW:

![](01.png "YOUR TITLE"")