1234567891011121314151617 |
- template(name="editor")
- a.fa.fa-brands.fa-markdown(title="{{_ 'convert-to-markdown'}}")
- a.fa.fa-copy(title="{{_ 'copy-text-to-clipboard'}}")
- span.copied-tooltip {{_ 'copied'}}
- textarea.editor(
- dir="auto"
- class="{{class}}"
- id=id
- autofocus=autofocus
- placeholder="{{_ 'comment-placeholder'}}")
- +Template.contentBlock
- template(name="viewer")
- .viewer(dir="auto")
- +mentions
- +markdown
- {{> UI.contentBlock }}
|