PlantUMLBridge

Description

PlantUML syntax to Pharo Form

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Forks
1
Created
Dec. 15, 2019
Updated
Oct. 14, 2021
Topics
pharo plantuml smalltalk

README excerpt

# Purpose
I am a class that can convert PlantUML syntax to the url of a diagram which can be loaded from the [plantuml site](http://plantuml.com/).


I have two kinds of service methods on the class side of me.

- `pngFromSource:` and `svgFromSource:  which returns a url to a diagram corresponding to the source.
- `imageFromUML:` and `webbrowseUML:`  which returns the in-image png or opens the svg in a webbrowser.

I am a rewrite of the plantuml encoding scheme developed as part of:
https://github.com/fuhrmanator/PlantUMLPharoGizmo.

### Metacello load:

```smalltalk
Metacello new
   baseline: 'PlantUMLBridge';
   repository: 'github://kasperosterbye/PlantUMLBridge';
   load.
```
← Back to results