@@ -255,7 +255,7 @@ misleadingly under an "Arguments" heading. Still, it's better than nothing
255255until we can do it properly.
256256
257257If you are using typedoc, it also is possible to destructure keyword arguments
258- by using the `@destructure ` tag::
258+ by using the `` @destructure ` ` tag::
259259
260260 /**
261261 * @param options
@@ -446,7 +446,7 @@ Typescript: Cross references
446446----------------------------
447447
448448Typescript types will be converted to cross references. To render cross
449- references, you can define a hook in ``conf.py `` called `ts_type_xref_formatter `. It
449+ references, you can define a hook in ``conf.py `` called `` ts_type_xref_formatter ` `. It
450450should take two arguments: the first argument is the sphinx confix, and the
451451second is an ``sphinx_js.ir.TypeXRef `` object. This has a ``name `` field and two
452452variants:
@@ -465,7 +465,7 @@ place of the type. For example:
465465 name = rst.escape(xref.name)
466466 return f " :js: { xref.kind} :` { name} ` "
467467 else :
468- # Otherwise, don't insert a xref
468+ # Otherwise, don't insert a xref
469469 return xref.name
470470
471471
@@ -495,20 +495,20 @@ Configuration Reference
495495 If using TypeDoc, specify the path of ``tsconfig.json `` file
496496
497497``ts_type_xref_formatter ``
498- A function for formatting typescript type cross referenes . See the
498+ A function for formatting typescript type cross references . See the
499499 "Typescript: Cross references" section below.
500500
501501``ts_type_bold ``
502- Make all typescript types bold if `true `.
502+ Make all typescript types bold if `` true ` `.
503503
504504``ts_sphinx_js_config ``
505505 A link to a typescript config file.
506506
507- The `ts_sphinx_js_config ` file
507+ The `` ts_sphinx_js_config ` ` file
508508------------------------------
509509
510510This file should be a typescript module. It's executed in a context where it can
511- import `typedoc ` and `sphinx_js `. These functions take TypeDoc IR objects as
511+ import `` typedoc `` and `` sphinx_js ` `. These functions take TypeDoc IR objects as
512512arguments. Since the TypeDoc IR is unstable, this config may often break when
513513switching TypeDoc versions. However, these hooks are very powerful so using them
514514may be worthwhile anyways. This API is experimental and may change in the
@@ -522,7 +522,7 @@ functions::
522522* ``shouldDestructureArg: (param: ParameterReflection) => boolean ``
523523
524524 This function takes a ``ParameterReflection `` and decides if it should be
525- destructured. If so, it's equivalent to putting a `@destructure ` tag for the
525+ destructured. If so, it's equivalent to putting a `` @destructure ` ` tag for the
526526 argument. For example:
527527
528528 .. code_block :: ts
@@ -544,7 +544,7 @@ functions::
544544 changes.
545545
546546 For example, this ``postConvert `` hook removes the constructor from classes marked with
547- `@hideconstructor `.
547+ `` @hideconstructor ` `.
548548
549549 .. code_block :: ts
550550
@@ -556,7 +556,7 @@ functions::
556556 }
557557 }
558558
559- To use it, you'll also need to add a tag defintion for `@hideconstructor ` to your `tsdoc.json ` file:
559+ To use it, you'll also need to add a tag definition for `` @hideconstructor `` to your `` tsdoc.json ` ` file:
560560
561561 .. code_block :: json
562562
@@ -652,7 +652,7 @@ Version History
652652===============
653653
6546545.0.0: (Unreleased)
655- * Droped support for Python 3.9 (pyodide/sphinx-js-fork#7)
655+ * Dropped support for Python 3.9 (pyodide/sphinx-js-fork#7)
656656 * Dropped support for typedoc 0.15, added support for typedoc 0.25--0.28
657657 (pyodide/sphinx-js-fork#11, pyodide/sphinx-js-fork#22,
658658 pyodide/sphinx-js-fork#31, pyodide/sphinx-js-fork#39,
@@ -665,7 +665,7 @@ Version History
665665 (pyodide/sphinx-js-fork#25)
666666 * Only monkeypatch Sphinx classes when sphinx_js extension is used
667667 (pyodide/sphinx-js-fork#27)
668- * Allow using installation of ``typedoc `` or ``jsdoc `` from `node_modules `
668+ * Allow using installation of ``typedoc `` or ``jsdoc `` from `` node_modules ` `
669669 instead of requiring global install. (pyodide/sphinx-js-fork#33)
670670 * Handle markdown style codepens correctly in typedoc comments.
671671 (pyodide/sphinx-js-fork#47)
@@ -697,7 +697,7 @@ Version History
697697 * Fixed crash when objects are reexported. (pyodide/sphinx-js-fork#126)
698698 * Added ``jsdoc_tsconfig_path `` which can specify the path to the
699699 ``tsconfig.json `` file that should be used. (pyodide/sphinx-js-fork#116)
700- * Added a `js:interface ` directive (pyodide/sphinx-js-fork#138).
700+ * Added a `` js:interface ` ` directive (pyodide/sphinx-js-fork#138).
701701 * Removed parentheses from xrefs to classes (pyodide/sphinx-js-fork#155).
702702 * Added a ``:js:typealias: `` directive (pyodide/sphinx-js-fork#156).
703703 * Added rendering for conditional, indexed access, inferred, mapped, optional,
@@ -750,7 +750,7 @@ Version History
750750
7517513.1.1: (March 23rd, 2021)
752752 * Rewrite large parts of the suffix tree that powers path lookup. This fixes
753- several crasher .
753+ several crashes .
754754
7557553.1: (September 10th, 2020)
756756 * Re-architect language analysis. There is now a well-documented intermediate
0 commit comments