Skip to content

Commit

Permalink
Merge branch 'master' into gh-3102
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed Jan 6, 2025
2 parents 77a612b + d0bac8c commit f8a2945
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ in your items that Bib(La)TeX won't understand.

* BBT will convert from/to HTML/LaTeX:

- `<i>...</i>`&#8660;`\emph{...}`/`\textit{...}`
- `<i>...</i>`&#8660;`\emph{...}`/`\mkbibemph{...}`/`\textit{...}`
- `<b>...</b>`&#8660;`\textbf{...}`
- `<sup>...</sup>`&#8660;`\textsuperscript{...}` and `<sub>...</sub>`&#8660;`\textsubscript{...}`.

Expand Down
3 changes: 0 additions & 3 deletions setup/api-extractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ export class API {
const methodName: string = method.name.getText(this.ast)
if (!methodName) return

const jsDoc = method.getChildren().filter(ts.isJSDoc).map(doc => doc.comment).join("\n");
console.log(jsDoc)

const comment_ranges = ts.getLeadingCommentRanges(this.ast.getFullText(), method.getFullStart())
if (!comment_ranges) return
const comment = this.ast.getFullText().slice(comment_ranges[0].pos, comment_ranges[0].end)
Expand Down

0 comments on commit f8a2945

Please sign in to comment.