Bobby
Bobby
好!支持!威武!有希望了!
I think one of the reasons is platform-independent. You can use the code on Windows Phone or ASP.Net, which receiving the data from Windows Phone client. Another reason I think...
In my app, I map Manufacturer to `DeviceStatus.DeviceManufacturer` or `DeviceExtendedProperties.GetValue("DeviceManufacturer")` , and map DeviceStatus.DeviceName to `DeviceStatus.DeviceName` or `DeviceExtendedProperties.GetValue("DeviceName")`.
> 啊。。这个。。似乎从来没实现过这种语法。。如果着急的话可以根据这篇[文档](https://github.com/Tencent/cherry-markdown/wiki/%E8%87%AA%E5%AE%9A%E4%B9%89%E8%AF%AD%E6%B3%95) 实现一个自定义语法,把这个语法放在公式前面,逻辑是将 `\[...\]` 替换成 `~D~D...~D~D` ;将 `\(...\)` 替换成 `~D...~D` 根据 @sunsonliu 的提示实现了一下,测试是OK的。建议后续评估能否直接支持?目前混元模型输出的公式是支持这种语法的😂 ```typescript const formulaBlockSyntaxHook = CherryEngine.createSyntaxHook('formulaBlock', CherryEngine.constants.HOOKS_TYPE_LIST.PAR, { needCache: true, beforeMakeHtml(str: string) { return str.replace(this.RULE.reg, (whole: string, text:...