You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
630 B
24 lines
630 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FLocal.Core;
|
|
using PJonDevelopment.BBCode;
|
|
|
|
namespace FLocal.Common.BBCodes {
|
|
class Quote : BBCode {
|
|
|
|
public Quote()
|
|
: base("quote") {
|
|
}
|
|
|
|
public override string Format(ITextFormatter formatter) {
|
|
string inner = this.GetInnerHTML(formatter).TrimHtml();
|
|
if(inner == "") return "";
|
|
string marker = this.Default;
|
|
if(marker == null) marker = "Quote:";
|
|
return "<blockquote><div class=\"quotetitle\">" + marker + "</div><div class=\"quotecontent\">" + inner + "</div></blockquote>";
|
|
}
|
|
|
|
}
|
|
}
|
|
|