Skip to content

Commit 37bd02b

Browse files
committed
Link dot command example diagrams to diagrams
1 parent b1980e6 commit 37bd02b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/commands/dot_command.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ output in the form of a SVG file named `wreq-example*.svg`.
6969
stack dot | dot -Tsvg -o wreq-example1.svg
7070
~~~
7171
72-
![wreq-example1.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example1.svg)
72+
[![wreq-example1.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example1.svg)](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example1.svg)
7373
7474
* Include external dependencies:
7575
7676
~~~text
7777
stack dot --external | dot -Tsvg -o wreq-example2.svg
7878
~~~
7979
80-
![wreq-example2.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example2.svg)
80+
[![wreq-example2.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example2.svg)](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example2.svg)
8181
8282
* Include external dependencies, limit the depth and save the output from
8383
`stack dot` as an intermediate file (`wreq-example3.dot`).
@@ -93,15 +93,15 @@ output in the form of a SVG file named `wreq-example*.svg`.
9393
stack dot --no-include-base --external --depth 2 | dot -Tsvg -o wreq-example4.svg
9494
~~~
9595
96-
![wreq-example4.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example4.svg)
96+
[![wreq-example4.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example4.svg)](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example4.svg)
9797
9898
* Include external dependencies and prune `base` and other packages:
9999
100100
~~~text
101101
stack dot --external --prune base,lens,wreq-examples,http-client,aeson,tls,http-client-tls,exceptions | dot -Tsvg -o wreq-example5.svg
102102
~~~
103103
104-
![wreq-example5.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example5.svg)
104+
[![wreq-example5.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example5.svg)](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example5.svg)
105105
106106
* Include external dependencies, prune `base` and other packages, and use a
107107
different Graphviz executable to draw the graph:
@@ -112,4 +112,4 @@ output in the form of a SVG file named `wreq-example*.svg`.
112112
stack dot --external --prune base,lens,wreq-examples,http-client,aeson,tls,http-client-tls,exceptions | twopi -Groot=wreq -Goverlap=false -Tsvg -o wreq-example6.svg
113113
~~~
114114
115-
![wreq-example6.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example6.svg)
115+
[![wreq-example6.svg](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example6.svg)](https://cdn.jsdelivr.net/gh/commercialhaskell/stack@master/doc/img/dot_command/wreq-example6.svg)

0 commit comments

Comments
 (0)