Skip to content

Commit 9f8ef0d

Browse files
committed
Export MarkdownEvent
Resolves #1696. Didn't see any explanation for getRawComment, and I haven't been able to come up with a good reason to export it, so it still isn't exported.
1 parent 454740b commit 9f8ef0d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Flag option types like `validation` can now be set to true/false to enable/disable all flags within them.
66
- Source code links now work with Bitbucket repositories, resolves #1615.
77
- Added `githubPages` option (default: true), which will create a `.nojekyll` page in the generated output, resolves #1680.
8+
- `MarkdownEvent` is now exported, resolves #1696.
89

910
### Bug Fixes
1011

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export {
1414
Theme,
1515
PageEvent,
1616
RendererEvent,
17+
MarkdownEvent,
1718
} from "./lib/output";
1819
export type { RenderTemplate } from "./lib/output";
1920

src/lib/output/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { PageEvent, RendererEvent } from "./events";
1+
export { PageEvent, RendererEvent, MarkdownEvent } from "./events";
22
export { UrlMapping } from "./models/UrlMapping";
33
export type { RenderTemplate } from "./models/UrlMapping";
44
export { Renderer } from "./renderer";

0 commit comments

Comments
 (0)