class Asciidoctor::PlantUml::Configuration

PlantUML Configuration

Constants

DEFAULT_ENCODING
DEFAULT_URL

Attributes

encoding[RW]
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 18
def initialize
  @url = DEFAULT_URL
  @txt_enable = true
  @svg_enable = true
  @png_enable = true
  @encoding = DEFAULT_ENCODING
end