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.
21 lines
542 B
21 lines
542 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using PJonDevelopment.BBCode;
|
|
|
|
namespace FLocal.Common.BBCodes {
|
|
class Quote : BBCode {
|
|
|
|
public Quote()
|
|
: base("quote") {
|
|
}
|
|
|
|
public override string Format(ITextFormatter formatter) {
|
|
string marker = this.Default;
|
|
if(marker == null) marker = "Quote:";
|
|
return "<blockquote><font class=\"small\">" + marker + "</font><hr/><br/>" + this.GetInnerHTML(formatter).Trim() + "<br/><br/><hr/></blockquote><br/>";
|
|
}
|
|
|
|
}
|
|
}
|
|
|