blob: c6fdbaa77849ef53543ebf2b7c720ff53c2cf77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: CC-BY-NC-SA-4.0
*/
import footnotes from "./data/footnotes";
export function getFootnote(id) {
const footnote = footnotes[id];
if (typeof footnote != "undefined") {
return footnote;
}
}
|