Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何制作自己的标记语言,如 Facebook 的 FBML?
我在网上搜索,但我能找到的只是我可以使用 XML 和 DTD 制作标记语言。
去做就对了。这里:
<language> <name>My markup language</name> <example>See above</example> </language>
我刚刚做了。当然,根据您想如何使用它,您必须记录并定义它以使其可用;如果您希望应用程序能够理解它,那么您将不得不编写这些应用程序;并且您可能想要编写一个模式或 DTD 来区分正确使用您的标记语言的文档和那些没有正确使用您的标记语言的文档。