Unified
Summary
This goes over custom unified
elements
DNoteAnchor
DNoteHeaderAnchor
/**
* This represents a markdown header
* ```md
* # H1
* ```
*/
export type DNoteHeaderAnchor = {
type: "header";
text?: string; //original text for the anchor
value: string;
depth: number;
};
Backlinks