https://github.com/kasperosterbye/plantumlbridge
PlantUML syntax to Pharo Form
https://github.com/kasperosterbye/plantumlbridge
pharo plantuml smalltalk
Last synced: about 1 year ago
JSON representation
PlantUML syntax to Pharo Form
- Host: GitHub
- URL: https://github.com/kasperosterbye/plantumlbridge
- Owner: kasperosterbye
- License: mit
- Created: 2019-12-15T13:11:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-05T08:19:35.000Z (about 4 years ago)
- Last Synced: 2025-04-12T08:59:54.652Z (about 1 year ago)
- Topics: pharo, plantuml, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.
```