This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathheading-handler.js
47 lines (43 loc) · 1.6 KB
/
heading-handler.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Copyright 2019 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
const fallback = require('mdast-util-to-hast/lib/handlers/heading');
const toString = require('mdast-util-to-string');
const strip = require('strip-markdown');
const GithubSlugger = require('github-slugger');
/**
* Utility class injects heading identifiers during the MDAST to VDOM transformation.
*/
class HeadingHandler {
/**
* Initializes the handler
*/
constructor() {
// scoping the slugger instance to the current transform operation
// so that heading uniqueness is guaranteed for each transformation separately
this.slugger = new GithubSlugger();
}
/**
* Returns the handler function
*/
handler() {
return (h, node) => {
// Prepare the heading id
const headingIdentifier = this.slugger.slug(toString(strip()(node)));
// Inject the id after transformation
const n = { ...node };
const el = fallback(h, n);
el.properties.id = el.properties.id || headingIdentifier;
return el;
};
}
}
module.exports = HeadingHandler;