Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kasperosterbye/plantumlbridge
PlantUML syntax to Pharo Form
https://github.com/kasperosterbye/plantumlbridge
pharo plantuml smalltalk
Last synced: 1 day 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-05T08:19:35.000Z (over 2 years ago)
- Last Synced: 2024-11-06T01:54:50.301Z (about 2 months ago)
- Topics: pharo, plantuml, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- 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.
```