Skip to content

Commit 913c678

Browse files
authored
Merge pull request #628 from facultyai/docs-syntax-highlighting
Update docs syntax highlighting
2 parents e0343b7 + 4fde84f commit 913c678

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

docs/content/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ title: Changelog
66

77
This page documents notable changes in dash-bootstrap-components releases.
88

9+
## 0.12.2 - 2021/5/4
10+
11+
### Fixed
12+
13+
- Fix issue with nested `Progress` bars([PR 573](https://github.com/facultyai/dash-bootstrap-components/pull/573))
14+
915
## 0.12.1 - 2021/5/4
1016

1117
### Added

docs/content/docs/quickstart.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ Or alternatively you can install from source as follows
6262
```julia-repl
6363
julia> using Pkg;
6464
julia> Pkg.add(PackageSpec(
65-
url="https://github.com/facultyai/dash-bootstrap-components", rev="julia-release",
65+
url="https://github.com/facultyai/dash-bootstrap-components",
66+
rev="julia-release",
6667
))
6768
```
6869
~~~

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dash==1.20.0
1+
dash==1.21.0
22
dash_bootstrap_components==0.12.2
33
gunicorn
44
markdown

docs/static/js/highlight.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/js/highlight.pack.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/templates/partials/scripts.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s"
1414
crossorigin="anonymous"
1515
></script>
16-
<script src="/static/js/highlight.pack.js"></script>
16+
<script src="/static/js/highlight.min.js"></script>
1717
<script>
18-
hljs.initHighlightingOnLoad();
18+
hljs.configure({ignoreUnescapedHTML: true});
19+
hljs.highlightAll();
1920
</script>
2021
<script
2122
data-goatcounter="https://dbc-docs.goatcounter.com/count"

0 commit comments

Comments
 (0)