Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/markdownit/containers.js')
-rw-r--r--src/markdownit/containers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/markdownit/containers.js b/src/markdownit/containers.js
index 9cdc3dc7e..0e64f62c4 100644
--- a/src/markdownit/containers.js
+++ b/src/markdownit/containers.js
@@ -29,8 +29,8 @@ const buildRender = type => (tokens, idx, options, env, slf) => {
// add attributes to the opening tag
if (tag.nesting === 1) {
- tag.attrSet('data-container', type)
- tag.attrJoin('class', `custom-container custom-container-${type}`)
+ tag.attrSet('data-callout', type)
+ tag.attrJoin('class', `callout-container callout-container-${type}`)
}
return slf.renderToken(tokens, idx, options, env, slf)