Skip to content

Commit

Permalink
fix(core): remove superfluous quote from prop names
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed May 17, 2024
1 parent 96afe71 commit 4fa4093
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 86 deletions.
5 changes: 5 additions & 0 deletions .changeset/yellow-beds-smile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"typedoc-plugin-markdown": patch
---

- Remove superfluous quotes from prop names (#619)
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function declarationType(
}
}

name.push(backTicks(`"${obj.name}"`));
name.push(backTicks(obj.name));

const theType = this.helpers.getDeclarationType(obj) as SomeType;

Expand Down

0 comments on commit 4fa4093

Please sign in to comment.