EWSoftware / SHFB

Sandcastle Help File Builder (SHFB). A standalone GUI, Visual Studio integration package, and MSBuild tasks providing full configuration and extensibility for building help files with the Sandcastle tools.
Other
2.19k stars 367 forks source link

PlantUML support? #226

Closed KarloX2 closed 8 years ago

KarloX2 commented 8 years ago

Hi!

Is there any existing tool that could automatically generate UML graphics from PlantUML text Syntax?

For example, it would be great to write PlantUML in MAML Topics and have SHFB call the graphics generator for it and embed the graphic in the Topic.

Thanks

EWSoftware commented 8 years ago

You can probably create a plug-in to handle it. I'm not familiar with PlantUML so I can't say how you'd do that specifically. However, you can take a look at the latex component that someone created to handle LaTex statements. I only updated that fork to work with the latest release of SHFB so I can't provide support for it.

KarloX2 commented 8 years ago

Ok, here's roughly what I want to create:

/// <plantuml> /// Bob->Alice : Are you there? /// Alice->Bob : Yes! /// </plantuml>

Do you think this can be done and is the Latex component a good pattern for this?

Thanks!!

EWSoftware commented 8 years ago

It should work since it follows a similar pattern.

KarloX2 commented 8 years ago

Ok, I was able to implement what I needed. Thanks for your help !

jbaehr commented 8 years ago

would you mind sharing your plugin? It would make a great addition to SHFB