Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 987 Bytes

README.md

File metadata and controls

45 lines (36 loc) · 987 Bytes

Tools

Some tools which are easy to use for work.

panserver is used to preview the markdown file, please refer to panserver/README.md.

# Requirements:
# pip install bottle
# Ubuntu:
#        apt install -y pandoc
#        apt install -y graphviz
#        add-apt-repository ppa:openjdk-r/ppa && apt update
#        apt install -y plantuml
# macOS:
#      brew install pandoc
#      brew install graphviz
#      brew install  plantuml
# Windows:
#        choco install pandoc
#        choco install graphviz
#        choco install plantuml

# Assume markdown files lie in the current directory:
python panserver.py -a -r -p 8990 .

Some examples1:

digraph {
  rankdir=LR;
  A -> B;
}
Object <|-- ArrayList

Object : equals()
ArrayList : Object[] elementData
ArrayList : size()

Footnotes

  1. PlantUML Language Specification