CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @param {Readonly<Options> | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export default function remarkStringify(options?: Readonly<Options> | null | undefined): undefined;
|
|
export default class remarkStringify {
|
|
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @param {Readonly<Options> | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
constructor(options?: Readonly<Options> | null | undefined);
|
|
compiler: (tree: import("mdast").Root, file: import("vfile").VFile) => string;
|
|
}
|
|
export type Root = import('mdast').Root;
|
|
export type ToMarkdownOptions = import('mdast-util-to-markdown').Options;
|
|
export type Compiler = import('unified').Compiler<Root, string>;
|
|
export type Processor = import('unified').Processor<undefined, undefined, undefined, Root, string>;
|
|
export type Options = Omit<ToMarkdownOptions, 'extensions'>;
|