├── .editorconfig ├── .eslintrc.json ├── .github ├── funding.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── COMMENT_PARSER_OPTIONS.mjs ├── CliError.mjs ├── CliError.test.mjs ├── CodeLocation.mjs ├── CodeLocation.test.mjs ├── CodePosition.mjs ├── CodePosition.test.mjs ├── InvalidJsdocError.mjs ├── InvalidJsdocError.test.mjs ├── REMARK_STRINGIFY_OPTIONS.mjs ├── changelog.md ├── codePositionToIndex.mjs ├── codePositionToIndex.test.mjs ├── codeToJsdocComments.mjs ├── codeToJsdocComments.test.mjs ├── deconstructJsdocNamepath.mjs ├── deconstructJsdocNamepath.test.mjs ├── errorConsole.mjs ├── getJsdocBlockDescriptionSource.mjs ├── getJsdocBlockDescriptionSource.test.mjs ├── getJsdocSourceTokenCodeLocation.mjs ├── getJsdocSourceTokenCodeLocation.test.mjs ├── index.mjs ├── jsdoc-md-logo.svg ├── jsdoc-md.mjs ├── jsdoc-md.test.mjs ├── jsdocCommentToMember.mjs ├── jsdocCommentToMember.test.mjs ├── jsdocDataMdToMdAst.mjs ├── jsdocDataMdToMdAst.test.mjs ├── jsdocDataTypeToMdAst.mjs ├── jsdocDataTypeToMdAst.test.mjs ├── jsdocMd.mjs ├── jsdocMd.test.mjs ├── license.md ├── membersToMdAst.mjs ├── membersToMdAst.test.mjs ├── outlineMembers.mjs ├── outlineMembers.test.mjs ├── package.json ├── readme.md ├── remarkPluginReplaceSection.mjs ├── remarkPluginReplaceSection.test.mjs ├── replaceMdSection.mjs ├── replaceMdSection.test.mjs ├── reportCliError.mjs ├── reportCliError.test.mjs ├── test.mjs ├── test ├── jsdocCommentsToMembers.mjs ├── membersToMdAstSnapshot.mjs └── snapshots │ ├── InvalidJsdocError │ ├── code-location-end-position-beyond-start.ans │ ├── code-location-end-position-matching-start.ans │ └── code-location-end-position-none.ans │ ├── codeToJsdocComments │ ├── multiple-comment-blocks-multi-line-jsdoc.json │ ├── single-comment-block-multi-line-jsdoc.json │ └── single-comment-block-single-line-jsdoc.json │ ├── getJsdocBlockDescriptionSource │ ├── description-no-tags.json │ └── description-tags.json │ ├── jsdoc-md │ ├── argument-check-error-stderr.ans │ ├── argument-m-value-missing-following-short-arg-stderr.ans │ ├── argument-m-value-missing-stderr.ans │ ├── argument-markdown-path-value-empty-stderr.ans │ ├── argument-markdown-path-value-missing-stderr.ans │ ├── argument-s-value-missing-following-short-arg-stderr.ans │ ├── argument-s-value-missing-stderr.ans │ ├── argument-source-glob-value-empty-stderr.ans │ ├── argument-source-glob-value-missing-stderr.ans │ ├── argument-t-value-missing-following-short-arg-stderr.ans │ ├── argument-t-value-missing-stderr.ans │ ├── argument-target-heading-value-empty-stderr.ans │ ├── argument-target-heading-value-missing-stderr.ans │ ├── arguments.md │ ├── defaults.md │ ├── invalid-jsdoc-error-stderr.ans │ ├── unexpected-argument-stderr.ans │ └── unexpected-arguments-stderr.ans │ ├── jsdocCommentToMember │ ├── description.json │ ├── error-invalid-namepath.ans │ ├── event-without-name-prefix.json │ ├── tag-callback-missing-name.json │ ├── tag-callback-name.json │ ├── tag-callback-overriding-tag-callback.json │ ├── tag-callback-overriding-tag-kind.json │ ├── tag-callback-overriding-tag-name.json │ ├── tag-callback-overriding-tag-type.json │ ├── tag-callback-overriding-tag-typedef.json │ ├── tag-desc-missing-description.json │ ├── tag-desc-overriding-description.json │ ├── tag-desc-overriding-tag-desc.json │ ├── tag-desc-overriding-tag-description.json │ ├── tag-desc.json │ ├── tag-description-missing-description.json │ ├── tag-description-overriding-description.json │ ├── tag-description-overriding-tag-desc.json │ ├── tag-description-overriding-tag-description.json │ ├── tag-description.json │ ├── tag-example-caption-empty-content-extra-caption-close-syntax.json │ ├── tag-example-caption-empty-no-content.json │ ├── tag-example-caption-populated-content.json │ ├── tag-example-caption-populated-multiple-newlines-content.json │ ├── tag-example-caption-populated-newline-content.json │ ├── tag-example-caption-populated-no-content.json │ ├── tag-example-caption-populated-space-content.json │ ├── tag-example-caption-populated-spaces-and-tabs-content.json │ ├── tag-example-no-caption-multiple-newlines-content.json │ ├── tag-example-no-caption-newline-content.json │ ├── tag-example-no-caption-no-content.json │ ├── tag-example-no-caption-space-content.json │ ├── tag-example-no-caption-spaces-and-tabs-content.json │ ├── tag-fires-synonyms-duplicate-names.json │ ├── tag-fires-synonyms-missing-names.json │ ├── tag-fires-synonyms.json │ ├── tag-kind-missing-name.json │ ├── tag-kind-overriding-tag-callback.json │ ├── tag-kind-overriding-tag-kind.json │ ├── tag-kind-overriding-tag-typedef.json │ ├── tag-kind.json │ ├── tag-name-missing-name.json │ ├── tag-name-overriding-tag-callback.json │ ├── tag-name-overriding-tag-name.json │ ├── tag-name-overriding-tag-typedef.json │ ├── tag-name.json │ ├── tag-param-synonyms-missing-name.json │ ├── tag-param-synonyms-name-description.json │ ├── tag-param-synonyms-name.json │ ├── tag-param-synonyms-type-name-description.json │ ├── tag-param-synonyms-type-name.json │ ├── tag-param-synonyms-type-optional-default-name-description.json │ ├── tag-param-synonyms-type-optional-default-name.json │ ├── tag-param-synonyms-type-optional-name-description.json │ ├── tag-param-synonyms-type-optional-name.json │ ├── tag-prop-synonyms-missing-name.json │ ├── tag-prop-synonyms-name-description.json │ ├── tag-prop-synonyms-name.json │ ├── tag-prop-synonyms-type-name-description.json │ ├── tag-prop-synonyms-type-name.json │ ├── tag-prop-synonyms-type-optional-default-name-description.json │ ├── tag-prop-synonyms-type-optional-default-name.json │ ├── tag-prop-synonyms-type-optional-name-description.json │ ├── tag-prop-synonyms-type-optional-name.json │ ├── tag-return-description-overriding-tag-returns.json │ ├── tag-return-description.json │ ├── tag-return-missing-type-or-description.json │ ├── tag-return-type-description-overriding-tag-return.json │ ├── tag-return-type-description-overriding-tag-returns.json │ ├── tag-return-type-description.json │ ├── tag-return-type-overriding-tag-returns.json │ ├── tag-return-type.json │ ├── tag-returns-description-overriding-tag-return.json │ ├── tag-returns-description.json │ ├── tag-returns-missing-type-or-description.json │ ├── tag-returns-type-description-overriding-tag-return.json │ ├── tag-returns-type-description-overriding-tag-returns.json │ ├── tag-returns-type-description.json │ ├── tag-returns-type-overriding-tag-return.json │ ├── tag-returns-type-overriding-tag-returns.json │ ├── tag-returns-type.json │ ├── tag-see-missing-description.json │ ├── tag-see.json │ ├── tag-type-missing-type.json │ ├── tag-type-overriding-tag-callback.json │ ├── tag-type-overriding-tag-type.json │ ├── tag-type-overriding-tag-typedef.json │ ├── tag-type.json │ ├── tag-typedef-missing-name.json │ ├── tag-typedef-name.json │ ├── tag-typedef-overriding-tag-callback.json │ ├── tag-typedef-overriding-tag-kind.json │ ├── tag-typedef-overriding-tag-name.json │ ├── tag-typedef-overriding-tag-type.json │ ├── tag-typedef-overriding-tag-typedef.json │ └── tag-typedef-type-name.json │ ├── jsdocDataMdToMdAst │ ├── multiple-links.json │ ├── paragraph.json │ ├── single-link-empty-no-whitespace.json │ ├── single-link-empty-whitespace.json │ ├── single-link-populated-member-found-no-whitespace.json │ ├── single-link-populated-member-found-whitespace.json │ └── single-link-populated-member-missing-no-whitespace-error-message.ans │ ├── jsdocDataTypeToMdAst │ ├── type-invalid-error-message.ans │ └── type-valid.json │ ├── jsdocMd │ ├── default-options.md │ ├── option-cwd.md │ ├── option-markdownPath.md │ ├── option-sourceGlob.md │ ├── option-targetHeading.md │ ├── run-twice.md │ ├── with-prettier-config-file.md │ ├── with-prettier-ignore-file.md │ ├── with-prettier-parser-uninferrable.md │ └── without-prettier-config-file.md │ ├── membersToMdAst │ ├── class-event-name-conflict-solved-by-prefix.json │ ├── class-event-name-conflict-solved-by-prefix.md │ ├── class-event-no-name-prefix.json │ ├── class-event-no-name-prefix.md │ ├── class-event-object.json │ ├── class-event-object.md │ ├── class-inner-class.json │ ├── class-inner-class.md │ ├── class-inner-constant-object.json │ ├── class-inner-constant-object.md │ ├── class-inner-function.json │ ├── class-inner-function.md │ ├── class-inner-member-object.json │ ├── class-inner-member-object.md │ ├── class-inner-typedef-function.json │ ├── class-inner-typedef-function.md │ ├── class-inner-typedef-object.json │ ├── class-inner-typedef-object.md │ ├── class-instance-method-fires-events.json │ ├── class-instance-method-fires-events.md │ ├── class-instance-method.json │ ├── class-instance-method.md │ ├── class-instance-property-object.json │ ├── class-instance-property-object.md │ ├── class-static-method.json │ ├── class-static-method.md │ ├── class-static-property-object.json │ ├── class-static-property-object.md │ ├── class.json │ ├── class.md │ ├── constant-function.json │ ├── constant-function.md │ ├── constant-object.json │ ├── constant-object.md │ ├── deeply-nested-members.json │ ├── deeply-nested-members.md │ ├── error-event-namepath-invalid.ans │ ├── error-event-namepath-missing-jsdoc-member.ans │ ├── error-parameter-default-invalid.ans │ ├── error-property-default-invalid.ans │ ├── function-no-returns-type.json │ ├── function-no-returns-type.md │ ├── function.json │ ├── function.md │ ├── member-function.json │ ├── member-function.md │ ├── member-object.json │ ├── member-object.md │ ├── no-members.json │ ├── no-members.md │ ├── parameter-topDepth-as-1.json │ ├── parameter-topDepth-as-1.md │ ├── parameter-topDepth-as-3.json │ ├── parameter-topDepth-as-3.md │ ├── parameters-no-types-no-defaults-no-descriptions.json │ ├── parameters-no-types-no-defaults-no-descriptions.md │ ├── parameters-some-types-some-defaults-some-descriptions.json │ ├── parameters-some-types-some-defaults-some-descriptions.md │ ├── properties-no-types-no-defaults-no-descriptions.json │ ├── properties-no-types-no-defaults-no-descriptions.md │ ├── properties-some-types-some-defaults-some-descriptions.json │ ├── properties-some-types-some-defaults-some-descriptions.md │ ├── sort.json │ ├── sort.md │ ├── typedef-function.json │ ├── typedef-function.md │ ├── typedef-object.json │ └── typedef-object.md │ ├── outlineMembers │ ├── error-namepath-missing-jsdoc-member.ans │ └── no-missing-jsdoc-members.json │ ├── reportCliError │ ├── CliError-instance-stderr.ans │ ├── Error-instance-with-stack-stderr.ans │ ├── Error-instance-without-stack-stderr.ans │ └── primitive-value-stderr.ans │ └── typeAstToMdAst │ ├── AllLiteral.json │ ├── AllLiteral.md │ ├── ArrayType-with-multiple-items.json │ ├── ArrayType-with-multiple-items.md │ ├── ArrayType.json │ ├── ArrayType.md │ ├── BooleanLiteralType.json │ ├── BooleanLiteralType.md │ ├── FieldType.json │ ├── FieldType.md │ ├── FunctionType-with-multiple-parameters.json │ ├── FunctionType-with-multiple-parameters.md │ ├── FunctionType-with-new-and-param.json │ ├── FunctionType-with-new-and-param.md │ ├── FunctionType-with-new.json │ ├── FunctionType-with-new.md │ ├── FunctionType-with-parameter.json │ ├── FunctionType-with-parameter.md │ ├── FunctionType-with-return-and-VoidLiteral.json │ ├── FunctionType-with-return-and-VoidLiteral.md │ ├── FunctionType-with-return.json │ ├── FunctionType-with-return.md │ ├── FunctionType-with-this-and-param.json │ ├── FunctionType-with-this-and-param.md │ ├── FunctionType-with-this.json │ ├── FunctionType-with-this.md │ ├── FunctionType.json │ ├── FunctionType.md │ ├── NameExpression-with-member-link.json │ ├── NameExpression-with-member-link.md │ ├── NameExpression.json │ ├── NameExpression.md │ ├── NullLiteral.json │ ├── NullLiteral.md │ ├── NullableLiteral.json │ ├── NullableLiteral.md │ ├── NumericLiteralType.json │ ├── NumericLiteralType.md │ ├── OptionalType.json │ ├── OptionalType.md │ ├── RecordType.json │ ├── RecordType.md │ ├── RestType.json │ ├── RestType.md │ ├── StringLiteralType-empty.json │ ├── StringLiteralType-empty.md │ ├── StringLiteralType-space.json │ ├── StringLiteralType-space.md │ ├── StringLiteralType-tab.json │ ├── StringLiteralType-tab.md │ ├── StringLiteralType.json │ ├── StringLiteralType.md │ ├── TypeApplication-with-multiple-applications.json │ ├── TypeApplication-with-multiple-applications.md │ ├── TypeApplication.json │ ├── TypeApplication.md │ ├── UndefinedLiteral.json │ ├── UndefinedLiteral.md │ ├── UnionType.json │ └── UnionType.md ├── typeAstToMdAst.mjs ├── typeAstToMdAst.test.mjs ├── typeToTypeAst.mjs ├── typeToTypeAst.test.mjs ├── unescapeJsdoc.mjs └── unescapeJsdoc.test.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: jaydenseric 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | /test/snapshots 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "never" 3 | } 4 | -------------------------------------------------------------------------------- /COMMENT_PARSER_OPTIONS.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/COMMENT_PARSER_OPTIONS.mjs -------------------------------------------------------------------------------- /CliError.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CliError.mjs -------------------------------------------------------------------------------- /CliError.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CliError.test.mjs -------------------------------------------------------------------------------- /CodeLocation.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CodeLocation.mjs -------------------------------------------------------------------------------- /CodeLocation.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CodeLocation.test.mjs -------------------------------------------------------------------------------- /CodePosition.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CodePosition.mjs -------------------------------------------------------------------------------- /CodePosition.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/CodePosition.test.mjs -------------------------------------------------------------------------------- /InvalidJsdocError.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/InvalidJsdocError.mjs -------------------------------------------------------------------------------- /InvalidJsdocError.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/InvalidJsdocError.test.mjs -------------------------------------------------------------------------------- /REMARK_STRINGIFY_OPTIONS.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/REMARK_STRINGIFY_OPTIONS.mjs -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/changelog.md -------------------------------------------------------------------------------- /codePositionToIndex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/codePositionToIndex.mjs -------------------------------------------------------------------------------- /codePositionToIndex.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/codePositionToIndex.test.mjs -------------------------------------------------------------------------------- /codeToJsdocComments.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/codeToJsdocComments.mjs -------------------------------------------------------------------------------- /codeToJsdocComments.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/codeToJsdocComments.test.mjs -------------------------------------------------------------------------------- /deconstructJsdocNamepath.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/deconstructJsdocNamepath.mjs -------------------------------------------------------------------------------- /deconstructJsdocNamepath.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/deconstructJsdocNamepath.test.mjs -------------------------------------------------------------------------------- /errorConsole.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/errorConsole.mjs -------------------------------------------------------------------------------- /getJsdocBlockDescriptionSource.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/getJsdocBlockDescriptionSource.mjs -------------------------------------------------------------------------------- /getJsdocBlockDescriptionSource.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/getJsdocBlockDescriptionSource.test.mjs -------------------------------------------------------------------------------- /getJsdocSourceTokenCodeLocation.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/getJsdocSourceTokenCodeLocation.mjs -------------------------------------------------------------------------------- /getJsdocSourceTokenCodeLocation.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/getJsdocSourceTokenCodeLocation.test.mjs -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/index.mjs -------------------------------------------------------------------------------- /jsdoc-md-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdoc-md-logo.svg -------------------------------------------------------------------------------- /jsdoc-md.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdoc-md.mjs -------------------------------------------------------------------------------- /jsdoc-md.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdoc-md.test.mjs -------------------------------------------------------------------------------- /jsdocCommentToMember.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocCommentToMember.mjs -------------------------------------------------------------------------------- /jsdocCommentToMember.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocCommentToMember.test.mjs -------------------------------------------------------------------------------- /jsdocDataMdToMdAst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocDataMdToMdAst.mjs -------------------------------------------------------------------------------- /jsdocDataMdToMdAst.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocDataMdToMdAst.test.mjs -------------------------------------------------------------------------------- /jsdocDataTypeToMdAst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocDataTypeToMdAst.mjs -------------------------------------------------------------------------------- /jsdocDataTypeToMdAst.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocDataTypeToMdAst.test.mjs -------------------------------------------------------------------------------- /jsdocMd.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocMd.mjs -------------------------------------------------------------------------------- /jsdocMd.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/jsdocMd.test.mjs -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/license.md -------------------------------------------------------------------------------- /membersToMdAst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/membersToMdAst.mjs -------------------------------------------------------------------------------- /membersToMdAst.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/membersToMdAst.test.mjs -------------------------------------------------------------------------------- /outlineMembers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/outlineMembers.mjs -------------------------------------------------------------------------------- /outlineMembers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/outlineMembers.test.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/readme.md -------------------------------------------------------------------------------- /remarkPluginReplaceSection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/remarkPluginReplaceSection.mjs -------------------------------------------------------------------------------- /remarkPluginReplaceSection.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/remarkPluginReplaceSection.test.mjs -------------------------------------------------------------------------------- /replaceMdSection.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/replaceMdSection.mjs -------------------------------------------------------------------------------- /replaceMdSection.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/replaceMdSection.test.mjs -------------------------------------------------------------------------------- /reportCliError.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/reportCliError.mjs -------------------------------------------------------------------------------- /reportCliError.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/reportCliError.test.mjs -------------------------------------------------------------------------------- /test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test.mjs -------------------------------------------------------------------------------- /test/jsdocCommentsToMembers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/jsdocCommentsToMembers.mjs -------------------------------------------------------------------------------- /test/membersToMdAstSnapshot.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/membersToMdAstSnapshot.mjs -------------------------------------------------------------------------------- /test/snapshots/InvalidJsdocError/code-location-end-position-beyond-start.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/InvalidJsdocError/code-location-end-position-beyond-start.ans -------------------------------------------------------------------------------- /test/snapshots/InvalidJsdocError/code-location-end-position-matching-start.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/InvalidJsdocError/code-location-end-position-matching-start.ans -------------------------------------------------------------------------------- /test/snapshots/InvalidJsdocError/code-location-end-position-none.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/InvalidJsdocError/code-location-end-position-none.ans -------------------------------------------------------------------------------- /test/snapshots/codeToJsdocComments/multiple-comment-blocks-multi-line-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/codeToJsdocComments/multiple-comment-blocks-multi-line-jsdoc.json -------------------------------------------------------------------------------- /test/snapshots/codeToJsdocComments/single-comment-block-multi-line-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/codeToJsdocComments/single-comment-block-multi-line-jsdoc.json -------------------------------------------------------------------------------- /test/snapshots/codeToJsdocComments/single-comment-block-single-line-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/codeToJsdocComments/single-comment-block-single-line-jsdoc.json -------------------------------------------------------------------------------- /test/snapshots/getJsdocBlockDescriptionSource/description-no-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/getJsdocBlockDescriptionSource/description-no-tags.json -------------------------------------------------------------------------------- /test/snapshots/getJsdocBlockDescriptionSource/description-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/getJsdocBlockDescriptionSource/description-tags.json -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-check-error-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-check-error-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-m-value-missing-following-short-arg-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-m-value-missing-following-short-arg-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-m-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-m-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-markdown-path-value-empty-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-markdown-path-value-empty-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-markdown-path-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-markdown-path-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-s-value-missing-following-short-arg-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-s-value-missing-following-short-arg-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-s-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-s-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-source-glob-value-empty-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-source-glob-value-empty-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-source-glob-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-source-glob-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-t-value-missing-following-short-arg-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-t-value-missing-following-short-arg-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-t-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-t-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-target-heading-value-empty-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-target-heading-value-empty-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/argument-target-heading-value-missing-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/argument-target-heading-value-missing-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/arguments.md -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/defaults.md -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/invalid-jsdoc-error-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/invalid-jsdoc-error-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/unexpected-argument-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/unexpected-argument-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdoc-md/unexpected-arguments-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdoc-md/unexpected-arguments-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/error-invalid-namepath.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/error-invalid-namepath.ans -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/event-without-name-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/event-without-name-prefix.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-callback.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-kind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-kind.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-callback-overriding-tag-typedef.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-desc-missing-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-desc-missing-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-desc-overriding-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-desc-overriding-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-desc-overriding-tag-desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-desc-overriding-tag-desc.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-desc-overriding-tag-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-desc-overriding-tag-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-desc.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-description-missing-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-description-missing-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-description-overriding-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-description-overriding-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-description-overriding-tag-desc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-description-overriding-tag-desc.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-description-overriding-tag-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-description-overriding-tag-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-empty-content-extra-caption-close-syntax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-empty-content-extra-caption-close-syntax.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-empty-no-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-empty-no-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-multiple-newlines-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-multiple-newlines-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-newline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-newline-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-no-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-no-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-space-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-space-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-caption-populated-spaces-and-tabs-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-caption-populated-spaces-and-tabs-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-no-caption-multiple-newlines-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-no-caption-multiple-newlines-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-no-caption-newline-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-no-caption-newline-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-no-caption-no-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-no-caption-no-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-no-caption-space-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-no-caption-space-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-example-no-caption-spaces-and-tabs-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-example-no-caption-spaces-and-tabs-content.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-fires-synonyms-duplicate-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-fires-synonyms-duplicate-names.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-fires-synonyms-missing-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-fires-synonyms-missing-names.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-fires-synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-fires-synonyms.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-kind-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-kind-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-callback.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-kind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-kind.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-kind-overriding-tag-typedef.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-kind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-kind.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-name-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-name-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-callback.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-name-overriding-tag-typedef.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-default-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-default-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-default-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-default-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-param-synonyms-type-optional-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-default-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-default-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-default-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-default-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-name-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-name-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-prop-synonyms-type-optional-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-description-overriding-tag-returns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-description-overriding-tag-returns.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-missing-type-or-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-missing-type-or-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-type-description-overriding-tag-return.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-type-description-overriding-tag-return.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-type-description-overriding-tag-returns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-type-description-overriding-tag-returns.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-type-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-type-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-type-overriding-tag-returns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-type-overriding-tag-returns.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-return-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-return-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-description-overriding-tag-return.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-description-overriding-tag-return.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-missing-type-or-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-missing-type-or-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type-description-overriding-tag-return.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type-description-overriding-tag-return.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type-description-overriding-tag-returns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type-description-overriding-tag-returns.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type-overriding-tag-return.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type-overriding-tag-return.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type-overriding-tag-returns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type-overriding-tag-returns.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-returns-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-returns-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-see-missing-description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-see-missing-description.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-see.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-see.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-type-missing-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-type-missing-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-callback.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-type-overriding-tag-typedef.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-missing-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-missing-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-callback.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-kind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-kind.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-type.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-overriding-tag-typedef.json -------------------------------------------------------------------------------- /test/snapshots/jsdocCommentToMember/tag-typedef-type-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocCommentToMember/tag-typedef-type-name.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/multiple-links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/multiple-links.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/paragraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/paragraph.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/single-link-empty-no-whitespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/single-link-empty-no-whitespace.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/single-link-empty-whitespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/single-link-empty-whitespace.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-found-no-whitespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-found-no-whitespace.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-found-whitespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-found-whitespace.json -------------------------------------------------------------------------------- /test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-missing-no-whitespace-error-message.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataMdToMdAst/single-link-populated-member-missing-no-whitespace-error-message.ans -------------------------------------------------------------------------------- /test/snapshots/jsdocDataTypeToMdAst/type-invalid-error-message.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataTypeToMdAst/type-invalid-error-message.ans -------------------------------------------------------------------------------- /test/snapshots/jsdocDataTypeToMdAst/type-valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocDataTypeToMdAst/type-valid.json -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/default-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/default-options.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/option-cwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/option-cwd.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/option-markdownPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/option-markdownPath.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/option-sourceGlob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/option-sourceGlob.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/option-targetHeading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/option-targetHeading.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/run-twice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/run-twice.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/with-prettier-config-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/with-prettier-config-file.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/with-prettier-ignore-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/with-prettier-ignore-file.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/with-prettier-parser-uninferrable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/with-prettier-parser-uninferrable.md -------------------------------------------------------------------------------- /test/snapshots/jsdocMd/without-prettier-config-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/jsdocMd/without-prettier-config-file.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-name-conflict-solved-by-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-name-conflict-solved-by-prefix.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-name-conflict-solved-by-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-name-conflict-solved-by-prefix.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-no-name-prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-no-name-prefix.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-no-name-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-no-name-prefix.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-event-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-event-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-class.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-class.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-constant-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-constant-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-constant-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-constant-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-member-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-member-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-member-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-member-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-typedef-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-typedef-function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-typedef-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-typedef-function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-typedef-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-typedef-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-inner-typedef-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-inner-typedef-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-method-fires-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-method-fires-events.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-method-fires-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-method-fires-events.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-method.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-method.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-property-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-property-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-instance-property-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-instance-property-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-static-method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-static-method.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-static-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-static-method.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-static-property-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-static-property-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class-static-property-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class-static-property-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/class.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/constant-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/constant-function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/constant-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/constant-function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/constant-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/constant-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/constant-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/constant-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/deeply-nested-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/deeply-nested-members.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/deeply-nested-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/deeply-nested-members.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/error-event-namepath-invalid.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/error-event-namepath-invalid.ans -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/error-event-namepath-missing-jsdoc-member.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/error-event-namepath-missing-jsdoc-member.ans -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/error-parameter-default-invalid.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/error-parameter-default-invalid.ans -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/error-property-default-invalid.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/error-property-default-invalid.ans -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/function-no-returns-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/function-no-returns-type.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/function-no-returns-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/function-no-returns-type.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/member-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/member-function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/member-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/member-function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/member-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/member-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/member-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/member-object.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/no-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/no-members.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/no-members.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameter-topDepth-as-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameter-topDepth-as-1.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameter-topDepth-as-1.md: -------------------------------------------------------------------------------- 1 | # member A 2 | -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameter-topDepth-as-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameter-topDepth-as-3.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameter-topDepth-as-3.md: -------------------------------------------------------------------------------- 1 | ### member A 2 | -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameters-no-types-no-defaults-no-descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameters-no-types-no-defaults-no-descriptions.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameters-no-types-no-defaults-no-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameters-no-types-no-defaults-no-descriptions.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameters-some-types-some-defaults-some-descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameters-some-types-some-defaults-some-descriptions.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/parameters-some-types-some-defaults-some-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/parameters-some-types-some-defaults-some-descriptions.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/properties-no-types-no-defaults-no-descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/properties-no-types-no-defaults-no-descriptions.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/properties-no-types-no-defaults-no-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/properties-no-types-no-defaults-no-descriptions.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/properties-some-types-some-defaults-some-descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/properties-some-types-some-defaults-some-descriptions.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/properties-some-types-some-defaults-some-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/properties-some-types-some-defaults-some-descriptions.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/sort.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/sort.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/typedef-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/typedef-function.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/typedef-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/typedef-function.md -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/typedef-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/typedef-object.json -------------------------------------------------------------------------------- /test/snapshots/membersToMdAst/typedef-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/membersToMdAst/typedef-object.md -------------------------------------------------------------------------------- /test/snapshots/outlineMembers/error-namepath-missing-jsdoc-member.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/outlineMembers/error-namepath-missing-jsdoc-member.ans -------------------------------------------------------------------------------- /test/snapshots/outlineMembers/no-missing-jsdoc-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/outlineMembers/no-missing-jsdoc-members.json -------------------------------------------------------------------------------- /test/snapshots/reportCliError/CliError-instance-stderr.ans: -------------------------------------------------------------------------------- 1 | 2 | Error running CLI: 3 | 4 | Message. 5 | 6 | -------------------------------------------------------------------------------- /test/snapshots/reportCliError/Error-instance-with-stack-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/reportCliError/Error-instance-with-stack-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/reportCliError/Error-instance-without-stack-stderr.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/reportCliError/Error-instance-without-stack-stderr.ans -------------------------------------------------------------------------------- /test/snapshots/reportCliError/primitive-value-stderr.ans: -------------------------------------------------------------------------------- 1 | 2 | Error running CLI: 3 | 4 | '' 5 | 6 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/AllLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/AllLiteral.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/AllLiteral.md: -------------------------------------------------------------------------------- 1 | \* 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/ArrayType-with-multiple-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/ArrayType-with-multiple-items.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/ArrayType-with-multiple-items.md: -------------------------------------------------------------------------------- 1 | \[\*, \*] 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/ArrayType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/ArrayType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/ArrayType.md: -------------------------------------------------------------------------------- 1 | \[\*] 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/BooleanLiteralType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/BooleanLiteralType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/BooleanLiteralType.md: -------------------------------------------------------------------------------- 1 | `true` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FieldType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FieldType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FieldType.md: -------------------------------------------------------------------------------- 1 | {a: \*} 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-multiple-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-multiple-parameters.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-multiple-parameters.md: -------------------------------------------------------------------------------- 1 | function(\*, \*) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-new-and-param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-new-and-param.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-new-and-param.md: -------------------------------------------------------------------------------- 1 | function(new:A, \*) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-new.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-new.md: -------------------------------------------------------------------------------- 1 | function(new:A) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-parameter.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-parameter.md: -------------------------------------------------------------------------------- 1 | function(\*) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-return-and-VoidLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-return-and-VoidLiteral.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-return-and-VoidLiteral.md: -------------------------------------------------------------------------------- 1 | function():`void` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-return.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-return.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-return.md: -------------------------------------------------------------------------------- 1 | function():\* 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-this-and-param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-this-and-param.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-this-and-param.md: -------------------------------------------------------------------------------- 1 | function(this:A, \*) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-this.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType-with-this.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType-with-this.md: -------------------------------------------------------------------------------- 1 | function(this:A) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/FunctionType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/FunctionType.md: -------------------------------------------------------------------------------- 1 | function() 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NameExpression-with-member-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/NameExpression-with-member-link.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NameExpression-with-member-link.md: -------------------------------------------------------------------------------- 1 | [B](#type-b) 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NameExpression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/NameExpression.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NameExpression.md: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NullLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/NullLiteral.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NullLiteral.md: -------------------------------------------------------------------------------- 1 | `null` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NullableLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/NullableLiteral.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NullableLiteral.md: -------------------------------------------------------------------------------- 1 | ? 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NumericLiteralType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/NumericLiteralType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/NumericLiteralType.md: -------------------------------------------------------------------------------- 1 | `1` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/OptionalType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/OptionalType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/OptionalType.md: -------------------------------------------------------------------------------- 1 | \*? 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/RecordType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/RecordType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/RecordType.md: -------------------------------------------------------------------------------- 1 | {a: \*, b: \*} 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/RestType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/RestType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/RestType.md: -------------------------------------------------------------------------------- 1 | …\* 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/StringLiteralType-empty.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-empty.md: -------------------------------------------------------------------------------- 1 | `''` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/StringLiteralType-space.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-space.md: -------------------------------------------------------------------------------- 1 | `' '` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/StringLiteralType-tab.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType-tab.md: -------------------------------------------------------------------------------- 1 | `' '` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/StringLiteralType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/StringLiteralType.md: -------------------------------------------------------------------------------- 1 | `a` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/TypeApplication-with-multiple-applications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/TypeApplication-with-multiple-applications.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/TypeApplication-with-multiple-applications.md: -------------------------------------------------------------------------------- 1 | Array<\*, \*> 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/TypeApplication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/TypeApplication.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/TypeApplication.md: -------------------------------------------------------------------------------- 1 | Array<\*> 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/UndefinedLiteral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/UndefinedLiteral.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/UndefinedLiteral.md: -------------------------------------------------------------------------------- 1 | `undefined` 2 | -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/UnionType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/test/snapshots/typeAstToMdAst/UnionType.json -------------------------------------------------------------------------------- /test/snapshots/typeAstToMdAst/UnionType.md: -------------------------------------------------------------------------------- 1 | \* | void 2 | -------------------------------------------------------------------------------- /typeAstToMdAst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/typeAstToMdAst.mjs -------------------------------------------------------------------------------- /typeAstToMdAst.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/typeAstToMdAst.test.mjs -------------------------------------------------------------------------------- /typeToTypeAst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/typeToTypeAst.mjs -------------------------------------------------------------------------------- /typeToTypeAst.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/typeToTypeAst.test.mjs -------------------------------------------------------------------------------- /unescapeJsdoc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/unescapeJsdoc.mjs -------------------------------------------------------------------------------- /unescapeJsdoc.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/jsdoc-md/HEAD/unescapeJsdoc.test.mjs --------------------------------------------------------------------------------