从纯文本可视化工作流程图
假设有一个带有工作流程描述的纯文本(只是某种预定义格式的纯英语)。
是否有任何工具(更好的在线工具)可以基于纯文本可视化流程?
用途:将工作流程的描述存储在源代码控制系统中,并能够快速记住/理解它。
Assuming there is a plain text with description of the workflow (Just plain English in some predefined format).
Are there any tools (better online) to visualize the flow based on a plain text?
What for: to store the description of the workflow in a source control system and be able to quickly remember/understand that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老实说,我觉得这个想法很有吸引力,但怀疑它是否实用。您提到“纯文本”,但不确定这是否意味着源代码或自然语言描述。
如果它是源代码,也许您可以找到一些可以从特定语言自动生成流程图的东西(如果您说明该语言是什么,您可能会更幸运)。
如果您尝试从高级英语(或其他)语言描述中提取流程图,我认为这将是一个相当大的挑战。
如果我必须这样做,我会从 https://metacpan 开始使用 Perl .org/pod/Text::Flowchart::Script 用于“渲染”,同时阅读一些有关 NLP 的内容以进行解析(例如:http://www.perlmonks.org/?node=41281)。
Honestly I find the idea appealing but doubt it could be practical. You mention "plain text" but not sure if this means source code or a natural language description.
If it is source code maybe you can find something that automatically generates flowcharts from a specific language (you could have better luck if you stated what the language is).
If you are trying to extract a flowchart from a high-level English (or whatever) language descriptions I think it will prove quite a challenge.
If I had to do this, I'd go with Perl starting by https://metacpan.org/pod/Text::Flowchart::Script for the "rendering" while reading a bit on NLP for the parsing (ex.: http://www.perlmonks.org/?node=41281).