ff638eb010
Create codes documentation for standardized keys. Closes #218. Fixes #308. Ref #21.
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
/*
|
|
* 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;
|
|
}
|
|
}
|