editor.jade 454 B

1234567891011121314151617
  1. template(name="editor")
  2. a.fa.fa-brands.fa-markdown(title="{{_ 'convert-to-markdown'}}")
  3. a.fa.fa-copy(title="{{_ 'copy-text-to-clipboard'}}")
  4. span.copied-tooltip {{_ 'copied'}}
  5. textarea.editor(
  6. dir="auto"
  7. class="{{class}}"
  8. id=id
  9. autofocus=autofocus
  10. placeholder="{{_ 'comment-placeholder'}}")
  11. +Template.contentBlock
  12. template(name="viewer")
  13. .viewer(dir="auto")
  14. +mentions
  15. +markdown
  16. {{> UI.contentBlock }}