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
519 B
21 lines
519 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using PJonDevelopment.BBCode;
|
|
|
|
namespace FLocal.Common.BBCodes {
|
|
class Tex : BBCode {
|
|
|
|
public Tex()
|
|
: base("tex") {
|
|
}
|
|
|
|
public override string Format(ITextFormatter formatter) {
|
|
string tex = this.InnerBBCode;
|
|
var upload = helpers.TexProcessor.getCompiled(tex);
|
|
return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(tex) + "</f:alt></f:img>";
|
|
}
|
|
|
|
}
|
|
}
|
|
|