Skip to content

v1.0.4

Compare
Choose a tag to compare
@ldeso ldeso released this 08 Jan 10:45
· 17 commits to master since this release

Hugo Flex v1.0.4

This release fixes the problem that the markdown contained by the math shortcode could not be rendered (#36).

It is now possible to call the math shortcode:

  1. Either with % as the outermost delimiter so that the shortcode's inner content will be fully rendered when sent to the content renderer:

    {{% math %}}
    Here is [a link](https://github.com/ldeso/hugo-flex). By the way, $1 + 1 = 2$.
    {{% /math %}}
  2. Or with the < character, to indicate that the shortcode's content does not need further rendering (this was already possible prior to this release and does not change):

    {{< math >}}
    <p>
      Here is <a href="https://github.com/ldeso/hugo-flex">a link</a>. By the way, $1 + 1 = 2$.
    </p>
    {{< /math >}}

Diff from v1.0.3

Bug Fix

  • Allow calling math shortcode with markdown (#36) 1c11add
  • Update math rendering example 46899dc

Notes

  • Add pointer cursor to Soundcloud button df0662c
  • Update README.md 16a8dac