Skip to content

wzzju/tools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 64.3%
  • Shell 23.6%
  • Dockerfile 11.7%
  • JavaScript 0.4%