Skip to content

Commit

Permalink
chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.2.1 (#…
Browse files Browse the repository at this point in the history
…2617)

* chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.2.1

Bumps [mkdocs-include-markdown-plugin](https://github.com/mondeja/mkdocs-include-markdown-plugin) from 6.0.4 to 6.2.1.
- [Release notes](https://github.com/mondeja/mkdocs-include-markdown-plugin/releases)
- [Commits](mondeja/mkdocs-include-markdown-plugin@v6.0.4...v6.2.1)

---
updated-dependencies:
- dependency-name: mkdocs-include-markdown-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: update emoji generator in modules

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manuel de la Peña <mdelapenya@gmail.com>
  • Loading branch information
dependabot[bot] and mdelapenya authored Jul 3, 2024
1 parent 5576778 commit a32fe92
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ verify_ssl = true
[packages]
mkdocs = "==1.5.3"
mkdocs-codeinclude-plugin = "==0.2.1"
mkdocs-include-markdown-plugin = "==6.0.7"
mkdocs-include-markdown-plugin = "==6.2.1"
mkdocs-material = "==9.5.18"
mkdocs-markdownextradata-plugin = "==0.2.5"

Expand Down
28 changes: 14 additions & 14 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modulegen/internal/mkdocs/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ func overrideData(data []byte) []byte {

func setEmoji(content string, key string, value string) string {
old := "emoji_" + key + `: ""`
new := "emoji_" + key + ": !!python/name:materialx.emoji." + value
new := "emoji_" + key + ": !!python/name:material.extensions.emoji." + value
return strings.ReplaceAll(content, old, new)
}

0 comments on commit a32fe92

Please sign in to comment.