1 Commits

Author SHA1 Message Date
dependabot[bot]
f05f349c63 Bump mermaid from 8.9.0 to 9.1.2
Bumps [mermaid](https://github.com/knsv/mermaid) from 8.9.0 to 9.1.2.
- [Release notes](https://github.com/knsv/mermaid/releases)
- [Changelog](https://github.com/mermaid-js/mermaid/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/knsv/mermaid/compare/8.9.0...9.1.2)

---
updated-dependencies:
- dependency-name: mermaid
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-05 18:32:23 +00:00
5 changed files with 746 additions and 397 deletions

View File

@@ -1,10 +0,0 @@
kind: pipeline
type: docker
name: greeting
steps:
- name: en
image: alpine
commands:
- echo hello world

View File

@@ -64,9 +64,6 @@ docker-run:
.PHONY: install-deps
install-deps:
npm install
.PHONY: install-test-deps
install-test-deps:
pip install -r src/python/requirements.txt
.PHONY: run

1126
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,7 +5,7 @@
"github-markdown-css": "^4.0.0",
"jquery": "^3.5.0",
"mathjax": "^3.1.2",
"mermaid": "^8.9.0",
"mermaid": "^9.1.2",
"rollup": "^2.38.5"
}
}

View File

@@ -27,7 +27,7 @@ func init() {
bmPolicy.AllowElements("style")
bmPolicy.AllowAttrs("checked", "disabled", "type").OnElements("input")
bmPolicy.AllowAttrs("width", "height", "align").OnElements("img")
bmPolicy.AllowAttrs("style", "class", "align").OnElements("span", "p", "div", "a", "table", "tr", "td", "th")
bmPolicy.AllowAttrs("style", "class", "align").OnElements("span", "p", "div", "a")
md = goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithExtensions(mathjax.MathJax),