yegor256 / jekyll-plantuml

PlantUML plugin for Jekyll: helps you embed UML diagrams into static pages
https://rubygems.org/gems/jekyll-plantuml
MIT License
47 stars 15 forks source link

Using standard syntax #28

Closed mcondarelli closed 1 year ago

mcondarelli commented 1 year ago

Is there any reason preventing usage of (de facto) standard syntax for PlantUML inclusion using fencing?

I mean: Why use

{% plantuml %}
@startuml
...
@enduml
{% endplantuml %}

instead of:

```puml
@startuml
...
@enduml
```

Could this be considered in future updates?

yegor256 commented 1 year ago

@mcondarelli I believe, both options would work just fine. I just added a test for it: 7366d3b