mdast#FootnoteReference TypeScript Examples
The following examples show how to use
mdast#FootnoteReference.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: hierarchies.ts From dendron with GNU Affero General Public License v3.0 | 6 votes |
function footnote2html(reference: FootnoteReference) {
return html(
`<a id="${FOOTNOTE_REF_ID_PREFIX}${reference.identifier}"` +
`class="${FOOTNOTE_REF_CLASS}"` +
`href="#${FOOTNOTE_DEF_ID_PREFIX}${reference.identifier}">` +
(reference.label || reference.identifier) +
`</a>`
);
}
Example #2
Source File: hierarchies.ts From dendron with GNU Affero General Public License v3.0 | 4 votes |
plugin: Plugin = function (this: Unified.Processor, _opts?: PluginOpts) {
const proc = this;
const { config } = MDUtilsV5.getProcData(this);
let hierarchyDisplayTitle = config?.hierarchyDisplayTitle || "Children";
let hierarchyDisplay = config?.hierarchyDisplay;
if (MDUtilsV5.shouldApplyPublishingRules(proc)) {
const hierarchyConfigForPublishing =
ConfigUtils.getHierarchyDisplayConfigForPublishing(config);
hierarchyDisplay = hierarchyConfigForPublishing.hierarchyDisplay;
if (!_.isUndefined(hierarchyConfigForPublishing.hierarchyDisplayTitle)) {
hierarchyDisplayTitle =
hierarchyConfigForPublishing.hierarchyDisplayTitle;
}
}
if (hierarchyDisplay === undefined) hierarchyDisplay = true;
function transformer(tree: Node): void {
const root = tree as Root;
const { fname, vault, dest, config, insideNoteRef } =
MDUtilsV4.getDendronData(proc);
let addedBreak = false;
if (dest !== DendronASTDest.HTML) {
return;
}
// TODO: remove
if (!hierarchyDisplay) {
return;
}
function addBreak() {
if (addedBreak) return;
root.children.push({
type: "thematicBreak",
});
addedBreak = true;
}
function addFootnotes() {
/** Maps footnote identifiers to their definitions. */
const footnotes = new Map(
RemarkUtils.extractFootnoteDefs(root).map((definition) => [
definition.identifier,
definition,
])
);
/** All footnote definitions that have been referenced in this document. */
const usedFootnotes = new Set<FootnoteDefinition>();
visit(
root,
[DendronASTTypes.FOOTNOTE_REFERENCE],
(reference: FootnoteReference, index, parent) => {
const definition = footnotes.get(reference.identifier);
if (definition && parent) {
parent.children[index] = footnote2html(reference);
usedFootnotes.add(definition);
}
}
);
if (usedFootnotes.size > 0) {
addBreak();
root.children.push(heading(2, text("Footnotes")) as Content);
const footnoteItems: Node[] = [];
for (const definition of usedFootnotes) {
footnoteItems.push(listItem(footnoteDef2html(definition)));
}
root.children.push(list("ordered", footnoteItems) as Content);
}
}
if (!fname || insideNoteRef) {
// Even inside a note ref, render footnotes because we want them in there too
addFootnotes();
return;
}
const { engine } = MDUtilsV4.getEngineFromProc(proc);
const note = NoteUtils.getNoteByFnameFromEngine({
fname,
engine,
vault: vault!,
});
// check if v5 is active
if (MDUtilsV5.isV5Active(proc)) {
const resp = MDUtilsV5.getProcData(proc);
hierarchyDisplay = ConfigUtils.getEnableChildLinks(resp.config, { note });
}
/** Add frontmatter tags, if any, ahead of time. This way wikilink compiler will pick them up and render them. */
function addTags() {
const shouldApplyPublishRules =
MDUtilsV5.shouldApplyPublishingRules(proc);
const enableFrontmatterTags = ConfigUtils.getEnableFrontmatterTags({
config,
shouldApplyPublishRules,
});
const enableHashesForFMTags = ConfigUtils.getEnableHashesForFMTags({
config,
shouldApplyPublishRules,
});
if (
enableFrontmatterTags !== false &&
note?.tags &&
note.tags.length > 0
) {
addBreak();
root.children.push(heading(2, text("Tags")) as Content);
const tags = _.isString(note.tags) ? [note.tags] : note.tags;
const tagLinks = _.sortBy(
_.map(tags, (tag) =>
listItem(
paragraph(
frontmatterTag2WikiLinkNoteV4(tag, enableHashesForFMTags)
)
)
),
["custom.nav_order", "title"]
);
root.children.push(list("ordered", tagLinks) as Content);
}
}
function addChildren() {
// don't include if collection present
if (!note || note.children.length <= 0 || note?.custom?.has_collection) {
return;
}
if (
_.isBoolean(note.custom?.hierarchyDisplay) &&
!note.custom.hierarchyDisplay
) {
return;
}
const children = HierarchyUtils.getChildren({
skipLevels: note.custom?.skipLevels || 0,
note,
notes: engine.notes,
})
.filter((note) => SiteUtils.canPublish({ note, engine, config }))
.filter(
(note) =>
_.isUndefined(note.custom?.nav_exclude) || !note.custom?.nav_exclude
);
if (!_.isEmpty(children)) {
addBreak();
root.children.push(
u("strong", [{ type: "text", value: hierarchyDisplayTitle }])
);
root.children.push(
list(
"ordered",
_.sortBy(children, ["custom.nav_order", "title"]).map((note) => {
return listItem(
paragraph({
type: DendronASTTypes.WIKI_LINK,
value: note.fname,
data: {
alias: note.title,
vaultName: VaultUtils.getName(note.vault),
},
children: [],
} as WikiLinkNoteV4)
);
})
) as Content
);
}
}
// Will appear on page in this order
if (hierarchyDisplay) {
addChildren();
}
addTags();
addFootnotes();
// end transformer
}
return transformer;
}