Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fabc504

Browse files
committedApr 24, 2020
In Zero-width space sub-section, add 2 examples for cases in which zero-width space may be required to satisfy left/right-flanking delimiter run rules (with reference to Emphasis and strong emphasis sub-section)
Fixes: #643
1 parent 3ed1b91 commit fabc504

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎spec.txt

+18
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,24 @@ ensure emphasis, etc. in East Asian text:
641641
````````````````````````````````
642642

643643

644+
Zero-width space may also need to be used to achieve some emphasis effects
645+
while satisfying Markdown's [emphasis and strong emphasis] rules:
646+
647+
```````````````````````````````` example
648+
Hello *Super-*​**man**
649+
.
650+
<p>Hello <em>Super-</em>​<strong>man</strong></p>
651+
652+
````````````````````````````````
653+
654+
```````````````````````````````` example
655+
Hello ***Super***&#8203;**-man**
656+
.
657+
<p>Hello <em><strong>Super</strong></em>​<strong>-man</strong></p>
658+
659+
````````````````````````````````
660+
661+
644662
Zero-width space can also be used to achieve some combined effects such as mixed
645663
bold/italic mark-up:
646664

0 commit comments

Comments
 (0)
Please sign in to comment.