Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: typedoc2md/typedoc-plugin-markdown
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: typedoc-plugin-markdown@3.17.0
Choose a base ref
...
head repository: typedoc2md/typedoc-plugin-markdown
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: typedoc-plugin-markdown@3.17.1
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Nov 6, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9b701be View commit details
  2. chore: Update version

    tgreyuk committed Nov 6, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    632b8c9 View commit details
6 changes: 6 additions & 0 deletions packages/typedoc-plugin-markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.17.1](https://github.com/tgreyuk/typedoc-plugin-markdown/compare/typedoc-plugin-markdown@3.17.0...typedoc-plugin-markdown@3.17.1) (2022-11-06)

### Features

- Prevent escaping of angle brackets in toc [(#495)](https://github.com/tgreyuk/typedoc-plugin-markdown/issues/495)

## [3.17.0](https://github.com/tgreyuk/typedoc-plugin-markdown/compare/typedoc-plugin-markdown@3.16.0...typedoc-plugin-markdown@3.17.0) (2023-11-01)

### Features
2 changes: 1 addition & 1 deletion packages/typedoc-plugin-markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-plugin-markdown",
"version": "3.17.0",
"version": "3.17.1",
"description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.",
"main": "dist/index.js",
"files": [
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as Handlebars from 'handlebars';
import { ContainerReflection, ReflectionKind } from 'typedoc';
import { PageEvent } from 'typedoc/dist/lib/output/events';
import { escapeChars } from '../../utils';

export default function () {
Handlebars.registerHelper(
@@ -14,14 +15,14 @@ export default function () {
if (this.model.parent.parent.parent) {
title.push(
`[${
this.model.parent.parent.name
escapeChars(this.model.parent.parent.name)
}](${Handlebars.helpers.relativeURL(
this.model?.parent?.parent.url,
)})`,
);
}
title.push(
`[${this.model.parent.name}](${Handlebars.helpers.relativeURL(
`[${escapeChars(this.model.parent.name)}](${Handlebars.helpers.relativeURL(
this.model.parent.url,
)})`,
);
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{ toc }}
{{{ toc }}}

{{> members}}
Loading