parseLinkTitle(
str: string,
start: number,
max: number,
prev_state?: {
ok: boolean;
can_continue: boolean;
pos: number;
str: string;
marker: number;
},
): {
ok: boolean;
can_continue: boolean;
pos: number;
str: string;
marker: number;
}
Parses the optional title in
[label](destination "title")or[label]: destination "title".prev_statecontinues a reference title on the next source line.