From 72b40542d8dc73943def469b8fe77e846087212c Mon Sep 17 00:00:00 2001 From: Gerrit Birkeland Date: Wed, 27 Nov 2024 15:59:30 -0700 Subject: [PATCH] Update `@includeCode` example Ref: #2786 --- site/tags/include.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/site/tags/include.md b/site/tags/include.md index 4d04618ae..26571c85a 100644 --- a/site/tags/include.md +++ b/site/tags/include.md @@ -20,8 +20,16 @@ selecting the syntax highlighting language. /** * {@include ./doSomething_docs.md} * + * Quick start: + * {@includeCode ../examples/doSomethingQuickStart.ts} + * * @example + * This will only work if the jsdocCompatibility.exampleTag option is false * {@includeCode ../test/doSomething.test.ts} */ function doSomething() {} ``` + +## See Also + +- The [jsdocCompatibility](../options/comments.md#jsdoccompatibility) option.