diff --git a/Common/BBCodes/Quote.cs b/Common/BBCodes/Quote.cs index 24fdf0a..ced7d04 100644 --- a/Common/BBCodes/Quote.cs +++ b/Common/BBCodes/Quote.cs @@ -14,7 +14,7 @@ namespace FLocal.Common.BBCodes { public override string Format(ITextFormatter formatter) { string marker = this.Default; if(marker == null) marker = "Quote:"; - return "
" + marker + "

" + this.GetInnerHTML(formatter).Trim() + "



"; + return "
" + marker + "
" + this.GetInnerHTML(formatter).Trim() + "


"; } }