1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-07-17 20:43:20 +01:00
Files
.github
assets
diagnostics
doc
examples
src
tests
benchmarks
examples
scripts
snapshots
syntax-tests
highlighted
ARM Assembly
ASP
AWK
ActionScript
Apache
AppleScript
AsciiDoc
Assembly (x86_64)
Bash
Batch
BibTeX
C
C-Sharp
CMake
CSS
CSV
Clojure
Cpp
CpuInfo
Crystal
D
Dart
Diff
Dockerfile
DotENV
Elixir
Elm
Email
Erlang
EtcGroup
Fish
Fstab
GLSL
Git Attributes
Git Config
Git Ignore
Go
GraphQL
Graphviz DOT
test_digraph.dot
test_graph.dot
Groovy
HTML
Haskell
Hosts
INI
JSON
Java
JavaScript
Jinja2
Julia
Kotlin
Less
Lisp
Lua
MATLAB
Makefile
Manpage
Markdown
MemInfo
Ninja
OCaml
Objective-C
Objective-C++
PHP
Pascal
Passwd
Perl
Plaintext
PowerShell
Protocol Buffer
PureScript
Python
QML
R
Regular Expression
RequirementsTXT
Ruby
Ruby Haml
Ruby On Rails
Rust
SCSS
SLS
SML
SQL
SSH Config
SSHD Config
Sass
Scala
Svelte
Swift
TOML
Tcl
TeX
Terraform
Textile
TypeScript
Vue
XML
YAML
nginx
nim
nix
orgmode
reStructuredText
source
compare_highlighted_versions.py
create_highlighted_versions.py
regression_test.sh
update.sh
.gitattributes
assets.rs
integration_tests.rs
no_duplicate_extensions.rs
snapshot_tests.rs
tester.rs
.gitignore
.gitmodules
CHANGELOG.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
build.rs
bat/tests/syntax-tests/highlighted/Graphviz DOT/test_digraph.dot
2020-10-24 12:25:09 +02:00

42 lines
6.2 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

digraph {
 label = <Label <font color='red'><b>formating</b></font>,<br/> test <font point-size='20'>is</font> done<br/> here <i>now.</i>>;
 node [shape=box]
 rankdir=LR
 margin=0.1
 a->b
 // http://www.graphviz.org/doc/info/colors.html
 // note: style=filled!
 node [shape=box colorscheme=paired12 style=filled]
 margin=0.1
 a2[fillcolor=1]
 b2[fillcolor=3]
 a2->b2->x2
 // http://www.graphviz.org/doc/info/colors.html
 // note: style=filled!
 node [shape=box colorscheme=paired12 style=filled]
 rankdir=LR
 margin=0.1
 c1[fillcolor=1]
 c2[fillcolor=2]
 c3[fillcolor=3]
 c4[fillcolor=4]
 c5[fillcolor=5]
 c6[fillcolor=6]
 c7[fillcolor=7]
 c8[fillcolor=8]
 c9[fillcolor=9]
 c10[fillcolor=10]
 c11[fillcolor=11]
 c12[fillcolor=12]
 c->{c1 c3 c5 c7 c9 c11}
 c1->c2
 c3->c4
 c5->c6
 c7->c8
 c9->c10
 c11->c12
}