mirror of https://github.com/luizdepra/hugo-coder.git

Jens Rantil
yesterday 358a0a29a96c59145e94527d369552d1c0434cdb
feat(mermaid): upgrade to 11.13.0 (#998)

I have verified that the checksum works on my local machine.

### Prerequisites

Put an `x` into the box(es) that apply:

- [ ] This pull request fixes a bug.
- [x] This pull request adds a feature.
- [ ] This pull request introduces breaking change.

### Description

It upgrades MermaidJS to 11.13.0.

### Issues Resolved

None.

### Checklist

Put an `x` into the box(es) that apply:

#### General

- [x] Describe what changes are being made
- [x] Explain why and how the changes were necessary and implemented
respectively
- [x] Reference issue with `#<ISSUE_NO>` if applicable

#### Resources

- [x] If you have changed any SCSS code, run `make release` to
regenerate all CSS files

#### Contributors

- [x] Add yourself to `CONTRIBUTORS.md` if you aren't on it already

Co-authored-by: Luiz F. A. de PrĂ¡ <luizdepra@users.noreply.github.com>
1 files modified
4 ■■■■ changed files
layouts/baseof.html 4 ●●●● patch | view | raw | blame | history
layouts/baseof.html
@@ -27,8 +27,8 @@
  </main>
  {{ if .HasShortcode "mermaid" }}
  <script src="https://cdn.jsdelivr.net/npm/mermaid@9.3.0/dist/mermaid.min.js"
    integrity="sha256-QdTG1YTLLTwD3b95jLqFxpQX9uYuJMNAtVZgwKX4oYU=" crossorigin="anonymous"></script>
  <script src="https://cdn.jsdelivr.net/npm/mermaid@11.13.0/dist/mermaid.min.js"
    integrity="sha256-PiACvzM5B/rnwdaGC7x49dpBe8cLZPPSJoWBuguouWo=" crossorigin="anonymous"></script>
  <script>
    mermaid.initialize({startOnLoad: true});
  </script>