1. Remove duplicate/broken code in product tables section 2. Fix PostCSS config for Tailwind 4 3. Add @tailwindcss/postcss dependency 4. Remove --production flag from Dockerfile (sharp required) All fixes enable successful Docker build with favicon working.
13 lines
498 B
TypeScript
13 lines
498 B
TypeScript
/**
|
|
* Create an extension for `micromark` to enable GFM strikethrough syntax.
|
|
*
|
|
* @param {Options | null | undefined} [options={}]
|
|
* Configuration.
|
|
* @returns {Extension}
|
|
* Extension for `micromark` that can be passed in `extensions`, to
|
|
* enable GFM strikethrough syntax.
|
|
*/
|
|
export function gfmStrikethrough(options?: Options | null | undefined): Extension;
|
|
import type { Options } from 'micromark-extension-gfm-strikethrough';
|
|
import type { Extension } from 'micromark-util-types';
|