mirror of
https://github.com/sern-handler/website
synced 2026-06-16 12:52:20 +00:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
export const symbol = Symbol.for('@astropub/md')
|
|
|
|
export const shared = /** @type {Shared} */ (
|
|
globalThis[symbol] || (
|
|
globalThis[symbol] = {
|
|
markdownConfig: {},
|
|
}
|
|
)
|
|
)
|
|
|
|
/** @typedef {import('./shared').Shared} Shared */
|