Skip to content

Commit

Permalink
style: fix code formatting
Browse files Browse the repository at this point in the history
This was committed (and merged) incorrectly in #56. The corresponding
workflow was previously not marked as required.
  • Loading branch information
bauglir committed Mar 21, 2024
1 parent c00adc5 commit a79b64b
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/Kroki.jl
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ DIAGRAM_TYPE_METADATA = Dict{Symbol, DiagramTypeMetadata}(
:structurizr => DiagramTypeMetadata("Structurizr", "https://structurizr.com"),
:svgbob =>
DiagramTypeMetadata("Svgbob", "https://ivanceras.github.io/content/Svgbob.html"),
:symbolator => DiagramTypeMetadata("Symbolator", "https://github.com/kevinpt/symbolator"),
:symbolator =>
DiagramTypeMetadata("Symbolator", "https://github.com/kevinpt/symbolator"),
:tikz => DiagramTypeMetadata("Symbolator", "https://github.com/pgf-tikz/pgf"),
:umlet => DiagramTypeMetadata("UMLet", "https://github.com/umlet/umlet"),
:vega => DiagramTypeMetadata("Vega", "https://vega.github.io/vega"),
Expand Down Expand Up @@ -334,17 +335,8 @@ const LIMITED_DIAGRAM_SUPPORT = MIMEToDiagramTypeMap(
:vegalite,
:wireviz,
),
MIME"image/svg+xml"() => (
:bpmn,
:bytefield,
:d2,
:dbml,
:excalidraw,
:nomnoml,
:pikchr,
:svgbob,
:wavedrom
),
MIME"image/svg+xml"() =>
(:bpmn, :bytefield, :d2, :dbml, :excalidraw, :nomnoml, :pikchr, :svgbob, :wavedrom),
MIME"text/plain"() => (:c4plantuml, :plantuml, :structurizr),
MIME"text/plain; charset=utf-8"() => (:c4plantuml, :plantuml, :structurizr),
)
Expand Down

0 comments on commit a79b64b

Please sign in to comment.