aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-11-28 19:55:41 +0200
committerXhmikosR <[email protected]>2018-11-28 21:09:50 +0200
commit8d81226a8e52efc7209573912a6a7ff74875a75e (patch)
treebe863853824b36766e786242f45fe05270c8ee82
parent24eb9a75e9b6f78c70ead8de88009729970f3005 (diff)
downloadbootstrap-8d81226a8e52efc7209573912a6a7ff74875a75e.tar.xz
bootstrap-8d81226a8e52efc7209573912a6a7ff74875a75e.zip
Remove `no_toc_section`.
-rw-r--r--_config.yml4
-rw-r--r--site/_includes/callout.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/_config.yml b/_config.yml
index 335840ee4..25f1135ce 100644
--- a/_config.yml
+++ b/_config.yml
@@ -62,6 +62,6 @@ cdn:
toc:
min_level: 2
max_level: 4
- no_toc_section_class:
+ no_toc_section_class:
+ - "bd-callout"
- "bd-example"
- - "no_toc_section"
diff --git a/site/_includes/callout.html b/site/_includes/callout.html
index 2b446b0ab..434d10e1e 100644
--- a/site/_includes/callout.html
+++ b/site/_includes/callout.html
@@ -4,6 +4,6 @@
and type is one of: info (default), danger, warning
{%- endcomment -%}
{%- assign css_class = include.type | default: "info" -%}
-<div class="bd-callout bd-callout-{{ css_class }} no_toc_section">
+<div class="bd-callout bd-callout-{{ css_class }}">
{{- include.content | markdownify -}}
</div>