mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 17:41:09 +00:00
12 lines
271 B
C#
12 lines
271 B
C#
|
|
|||
|
namespace CodeImp.DoomBuilder.Actions
|
|||
|
{
|
|||
|
public class HintsManager
|
|||
|
{
|
|||
|
public static string GetRtfString(string text) {
|
|||
|
text = text.Replace("<b>", "{\\b ").Replace("</b>", "}").Replace("<br>", "\\par\\par ");
|
|||
|
return "{\\rtf1" + text + "}";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|