Skip to content

Commit eeecf57

Browse files
committed
docs: Change example block breaking sync
1 parent bf597bd commit eeecf57

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/markdown-confluence-sync/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -511,12 +511,12 @@ 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 (note that the macro is modified to avoid issues when syncing this README itself to Confluence):
515515
```markdown
516-
<ac:structured-macro ac:name="code">
517-
<ac:parameter ac:name="language">javascript</ac:parameter>
518-
<ac:plain-text-body><![CDATA[const hello = "world";console.log(hello);]]></ac:plain-text-body>
519-
</ac:structured-macro>
516+
<ac: structured-macro ac:name="code">
517+
<ac: parameter ac:name="language">javascript</ac: parameter>
518+
<ac: plain-text-body><![ CDATA [ const hello = "world";console.log(hello);] ]></ac: plain-text-body>
519+
</ac: structured-macro>
520520
```
521521
522522
### Unsupported features

0 commit comments

Comments
 (0)