diff options
Diffstat (limited to 'docs/dev-docs/index.html')
| -rw-r--r-- | docs/dev-docs/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/dev-docs/index.html b/docs/dev-docs/index.html index c3fd04a..e62268d 100644 --- a/docs/dev-docs/index.html +++ b/docs/dev-docs/index.html @@ -147,6 +147,31 @@ noData: "No matches found.", depth: 2, }, + plugins: [ + function (hook) { + hook.beforeEach(function (content) { + return content + .split("\n") + .filter(function (line) { + return !line.startsWith("@@@"); + }) + .join("\n"); + }); + }, + [ + "flexible-alerts", + { + style: "flat", + labels: { + NOTE: "Note", + TIP: "Tip", + IMPORTANT: "Important", + WARNING: "Warning", + CAUTION: "Caution", + }, + }, + ], + ], }; </script> @@ -156,6 +181,7 @@ <script src="../scripts/prism-toml.min.js"></script> <script src="../scripts/prism-rust.js"></script> <script src="../scripts/docsify-corner.js"></script> + <script src="../scripts/docsify-plugin-flexible-alerts.js"></script> <script src="../scripts/day-night-switch.js"></script> </body> </html> |
