Skip to content

Commit 7c8ae4b

Browse files
authored
Merge pull request #318 from microsoft/octogonz/playground
Improve presentation of "illustrative purposes" notice
2 parents 6ba7156 + 33065d9 commit 7c8ae4b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

playground/src/PlaygroundView.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,6 @@ export class PlaygroundView extends React.Component<IPlaygroundViewProps, IPlayg
156156
{this._renderSelectSample()}
157157
{this._renderThemeSelector()}
158158
</div>
159-
<div className="playground-notice-banner" style={bannerStyle}>
160-
TSDoc does not parse Typescript. Typescript code used here is for illustrative purposes only.
161-
</div>
162159
<CodeEditor
163160
className="playground-input-text-editor"
164161
style={editorStyle}

playground/src/samples/basicSample.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313
function getAverage(x: number, y: number): number {
1414
return (x + y) / 2.0;
1515
}
16+
17+
// The TypeScript function is included for illustrative purposes.
18+
// It is not processed by the TSDoc parser.

tsdoc-config/CHANGELOG.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"comments": {
99
"minor": [
1010
{
11-
"comment": "Add `supportedHtmlTags` and `reportUnsupportedHtmlTags` configuration options"
11+
"comment": "Add `supportedHtmlElements` and `reportUnsupportedHtmlElements` configuration options"
1212
}
1313
],
1414
"dependency": [

tsdoc-config/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Thu, 07 Apr 2022 22:51:07 GMT
77

88
### Minor changes
99

10-
- Add `supportedHtmlTags` and `reportUnsupportedHtmlTags` configuration options
10+
- Add `supportedHtmlElements` and `reportUnsupportedHtmlElements` configuration options
1111

1212
## 0.15.2
1313
Tue, 20 Apr 2021 04:25:13 GMT

tsdoc/CHANGELOG.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"comments": {
99
"minor": [
1010
{
11-
"comment": "Add `supportedHtmlTags` and `reportUnsupportedHtmlTags` options and corresponding validation"
11+
"comment": "Add `supportedHtmlElements` and `reportUnsupportedHtmlElements` options and corresponding validation"
1212
},
1313
{
1414
"comment": "Convert \"const enum\" APIs to be regular enums to enable compatibility with isolatedModules=true (GitHub #306)"

tsdoc/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Thu, 07 Apr 2022 22:51:07 GMT
77

88
### Minor changes
99

10-
- Add `supportedHtmlTags` and `reportUnsupportedHtmlTags` options and corresponding validation
10+
- Add `supportedHtmlElements` and `reportUnsupportedHtmlElements` options and corresponding validation
1111
- Convert "const enum" APIs to be regular enums to enable compatibility with isolatedModules=true (GitHub #306)
1212

1313
## 0.13.2

0 commit comments

Comments
 (0)