Skip to content

Commit fed53db

Browse files
committed
docs: Modify example
1 parent 19806df commit fed53db

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

components/markdown-confluence-sync/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,12 +511,11 @@ Apart of supporting the most common markdown features, the library also supports
511511
console.log(hello);
512512
```
513513
````
514-
will be converted to:
514+
will be converted to a Confluence code macro as follows:
515515
```markdown
516516
<ac:structured-macro ac:name="code">
517517
<ac:parameter ac:name="language">javascript</ac:parameter>
518-
<ac:plain-text-body><![CDATA[const hello = "world";
519-
console.log(hello);]]></ac:plain-text-body>
518+
<ac:plain-text-body><![ CDATA [ const hello = "world";console.log(hello);] ]></ac:plain-text-body>
520519
</ac:structured-macro>
521520
```
522521

0 commit comments

Comments
 (0)