HTML for numbers.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33943 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-30 01:23:10 +00:00
parent ad49c45475
commit f60dad8aaf
2 changed files with 8 additions and 0 deletions

View File

@ -76,6 +76,12 @@ void InsetMathNumber::mathmlize(MathStream & os) const
}
void InsetMathNumber::htmlize(HtmlStream & os) const
{
os << str_;
}
void InsetMathNumber::write(WriteStream & os) const
{
os << str_;

View File

@ -45,6 +45,8 @@ public:
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
///
void write(WriteStream & os) const;
///
InsetCode lyxCode() const { return MATH_NUMBER_CODE; }