update packages and add valign
This commit is contained in:
21
scripts/reveal.js/dist/plugin/markdown.d.ts
vendored
Normal file
21
scripts/reveal.js/dist/plugin/markdown.d.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { MarkdownConfig, RevealPlugin } from 'reveal.js';
|
||||
import { Marked } from 'marked';
|
||||
export interface MarkdownSlidifyOptions {
|
||||
separator?: string | null;
|
||||
verticalSeparator?: string | null;
|
||||
notesSeparator?: string;
|
||||
attributes?: string;
|
||||
}
|
||||
export interface MarkdownOptions extends MarkdownConfig {
|
||||
animateLists?: boolean;
|
||||
}
|
||||
export interface MarkdownPlugin extends RevealPlugin {
|
||||
id: 'markdown';
|
||||
processSlides(scope: ParentNode): Promise<void[]>;
|
||||
convertSlides(): Promise<void>;
|
||||
slidify(markdown: string, options?: MarkdownSlidifyOptions): string;
|
||||
readonly marked: Marked | null;
|
||||
readonly markdownOptions: MarkdownOptions;
|
||||
}
|
||||
declare const Markdown: () => MarkdownPlugin;
|
||||
export default Markdown;
|
||||
Reference in New Issue
Block a user