class Asciidoctor::PlantUml::Configuration
Constants
- DEFAULT_URL
Attributes
png_enable[RW]
svg_enable[RW]
txt_enable[RW]
url[RW]
Public Class Methods
new()
click to toggle source
# File lib/asciidoctor-plantuml/plantuml.rb, line 15 def initialize @url = DEFAULT_URL @txt_enable = true @svg_enable = true @png_enable = true end