PlantUML 노트 내에서 # 또는 *를 이스케이프하는 방법

1427 단어 plantumlpumluml
PlantUML의 note/endnote내에서는 Creole 기법 을 사용할 수 있지만, 그에 따라 행두의 # 이나 * 가 리스트로 해석되어 그대로 표시를 할 수 없다.
나는 BTS 티켓을 쓰려고 조금 곤란했다.
@startuml
Bob -> Alice : hello
note left
  # orderd list
  ## sub list
  * unorderd list
  ** sub list
  This is **bold**
  This is //italics//
  This is ""monospaced""
  This is --stroked--
  This is __underlined__
  This is ~~waved~~
endnote
@enduml



이스케이프하는 방법



공식 사이트 에 쓰여진 대로 앞에 물결표( ~ )를 둔다.
@startuml
Bob -> Alice : hello
note left
  ~# orderd list
  ~## sub list
  ~* unorderd list
  ~** sub list
  This is ~**bold**
  This is ~//italics//
  This is ~""monospaced""
  This is ~--stroked--
  This is ~__underlined__
  This is ~~~waved~~
endnote
@enduml



파형의 밑줄로 수식할 수 있는 것을 처음 알았지만, 물결표의 역할이 경쟁하고 있기 때문인지 이스케이프 할 수 없는 것 같다.

좋은 웹페이지 즐겨찾기