Use blockquote for cite on messages.
This commit is contained in:
parent
e780d0d0af
commit
c8cf4b6bf8
2 changed files with 5 additions and 1 deletions
|
@ -1494,10 +1494,10 @@ class ArticleView extends App.Controller
|
|||
|
||||
# quote text
|
||||
selectedText = App.Utils.textCleanup( selectedText )
|
||||
selectedText = App.Utils.quote( selectedText )
|
||||
|
||||
# convert to html
|
||||
selectedText = App.Utils.text2html( selectedText )
|
||||
selectedText = '<blockquote type="cite">' + selectedText + '</blockquote>'
|
||||
|
||||
articleNew.body = selectedText + body
|
||||
|
||||
|
|
|
@ -36,6 +36,10 @@ small {
|
|||
font-size: 12px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
.u-unclickable {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue