@diplodoc/cli 4.6.5 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +4 -2
- package/build/index.js.map +2 -2
- package/build/linter.js +3 -1
- package/build/linter.js.map +2 -2
- package/package.json +2 -2
- package/src/constants.ts +2 -0
package/src/constants.ts
CHANGED
|
@@ -16,6 +16,7 @@ const images = require('@diplodoc/transform/lib/plugins/images');
|
|
|
16
16
|
const monospace = require('@diplodoc/transform/lib/plugins/monospace');
|
|
17
17
|
const table = require('@diplodoc/transform/lib/plugins/table');
|
|
18
18
|
const term = require('@diplodoc/transform/lib/plugins/term');
|
|
19
|
+
const blockAnchor = require('@diplodoc/transform/lib/plugins/block-anchor');
|
|
19
20
|
const changelog = require('@diplodoc/transform/lib/plugins/changelog');
|
|
20
21
|
const mermaid = require('@diplodoc/mermaid-extension');
|
|
21
22
|
const openapi = require('@diplodoc/openapi-extension');
|
|
@@ -89,6 +90,7 @@ export const YFM_PLUGINS = [
|
|
|
89
90
|
openapi.transform(),
|
|
90
91
|
mermaid.transform(),
|
|
91
92
|
changelog,
|
|
93
|
+
blockAnchor,
|
|
92
94
|
];
|
|
93
95
|
|
|
94
96
|
export const PROCESSING_FINISHED = 'Processing finished:';
|