Skip to content

Commit

Permalink
Add support for explicit non-normative references ([[?...]])
Browse files Browse the repository at this point in the history
  • Loading branch information
kfranqueiro committed Nov 19, 2024
1 parent bb8afcc commit 7882fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 11ty/biblio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { readFile } from "fs/promises";
import { glob } from "glob";
import uniq from "lodash-es/uniq";

export const biblioPattern = /\[\[([\w-]+)\]\]/g;
export const biblioPattern = /\[\[\??([\w-]+)\]\]/g;

/** Compiles URLs from local biblio + specref for linking in Understanding documents. */
export async function getBiblio() {
Expand Down

0 comments on commit 7882fb0

Please sign in to comment.