Skip to content

Commit

Permalink
Merge pull request #1052 from david-poindexter/dnn-monaco-editor-usage
Browse files Browse the repository at this point in the history
Implemented `Usage` documentation for `dnn-monaco-editor`
  • Loading branch information
valadas authored May 6, 2024
2 parents 5cf1cea + 56f158a commit fdce5e9
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@
<!-- Auto Generated Below -->


## Usage

### HTML

```html
<dnn-monaco-editor
language="html"
value="<h1>Hello World</h1>
<div class=&quot;card&quot;>
<p>Some text</p>
</div>"
>
</dnn-monaco-editor>
```


### JSX-TSX

```tsx
<dnn-monaco-editor
language="html"
value="<h1>Hello World</h1>
<div class=&quot;card&quot;>
<p>Some text</p>
</div>"
>
</dnn-monaco-editor>
```



## Properties

| Property | Attribute | Description | Type | Default |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
```html
<dnn-monaco-editor
language="html"
value="<h1>Hello World</h1>
<div class=&quot;card&quot;>
<p>Some text</p>
</div>"
>
</dnn-monaco-editor>
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
```tsx
<dnn-monaco-editor
language="html"
value="<h1>Hello World</h1>
<div class=&quot;card&quot;>
<p>Some text</p>
</div>"
>
</dnn-monaco-editor>
```

0 comments on commit fdce5e9

Please sign in to comment.