Skip to content

Commit

Permalink
Export MarkdownEvent
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Gerrit0 committed Sep 18, 2021
1 parent 454740b commit 9f8ef0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
- Flag option types like `validation` can now be set to true/false to enable/disable all flags within them.
- Source code links now work with Bitbucket repositories, resolves #1615.
- Added `githubPages` option (default: true), which will create a `.nojekyll` page in the generated output, resolves #1680.
- `MarkdownEvent` is now exported, resolves #1696.

### Bug Fixes

Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Expand Up @@ -14,6 +14,7 @@ export {
Theme,
PageEvent,
RendererEvent,
MarkdownEvent,
} from "./lib/output";
export type { RenderTemplate } from "./lib/output";

Expand Down
2 changes: 1 addition & 1 deletion src/lib/output/index.ts
@@ -1,4 +1,4 @@
export { PageEvent, RendererEvent } from "./events";
export { PageEvent, RendererEvent, MarkdownEvent } from "./events";
export { UrlMapping } from "./models/UrlMapping";
export type { RenderTemplate } from "./models/UrlMapping";
export { Renderer } from "./renderer";
Expand Down

0 comments on commit 9f8ef0d

Please sign in to comment.