callin2 / plantUML_everywhere

Google Chrome extension that replace PlantUML code blocks into preview images.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pegmatite - Chrome ext to preview PlantUML in markdown

This is minor improve of Pegmatite. It is Google Chrome extension that replace PlantUML code blocks into preview images. Original Project

After install This extension you can view plantuml text as a image.

Any Html Page at Any Site

You can use <div puml> @startuml .... @enduml</div> or <pre uml> @startuml .... @enduml</pre> then you can see PlantUML image instead of PlantUML code

typedoc example

/**
 * This is class documentation comment
 *
 * class diagram for this class
 * <pre uml>
 *   @startuml
 *   Object <|-- ArrayList
 *
 *   Object : equals()
 *   ArrayList : Object[] elementData
 *   ArrayList : size()
 *   @enduml
 * </pre>
 *
 */
export class GraphWidget extends EventEmitter implements IGraphWidget {
...

after generate type doc then open generated document on chrome then you can see PlantUML image!

install

how-to-install-a-chrome-extension-without-using-the-chrome-web-store

About

Google Chrome extension that replace PlantUML code blocks into preview images.

License:Apache License 2.0


Languages

Language:JavaScript 100.0%