diff --git a/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs b/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs index ce0f10fe..56e52680 100644 --- a/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs +++ b/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs @@ -313,6 +313,10 @@ public static partial class MfmRenderer el.SetAttribute("style", "font-family: cursive;"); else if (args.ContainsKey("fantasy")) el.SetAttribute("style", "font-family: fantasy;"); + else if (args.ContainsKey("emoji")) + el.SetAttribute("style", "font-family: emoji;"); + else if (args.ContainsKey("math")) + el.SetAttribute("style", "font-family: math;"); return el; }