aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-06-04 21:33:40 +0200
committerAdrian Kummerlaender2015-06-04 21:33:40 +0200
commit30a53151c690830c92548a7c6de0fda9d4c846e8 (patch)
treeb9cfbeba26dff5420b894626b3db4b8699ca57dd
parent4318a9408309ec6d7f284b099c6570d6fcf7115a (diff)
downloadblog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar.gz
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar.bz2
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar.lz
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar.xz
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.tar.zst
blog.kummerlaender.eu-30a53151c690830c92548a7c6de0fda9d4c846e8.zip
Removed full width class from _SimpleParser_ image
-rw-r--r--source/00_content/pages/projects/simple_parser.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/00_content/pages/projects/simple_parser.md b/source/00_content/pages/projects/simple_parser.md
index 8683cb2..7129d56 100644
--- a/source/00_content/pages/projects/simple_parser.md
+++ b/source/00_content/pages/projects/simple_parser.md
@@ -17,7 +17,7 @@ This application marks the first steps in C++ I took a couple of years back and
The ability to export the internal binary expression tree resulting from the parsed term as [Graphviz] `dot` is useful for both visualization and debugging purposes. In the following image you can see the depiction of the tree resulting from the arbitrarily chosen term `2.5*(2+3-(3/2+1*(21+11+(5*2))))`:
-![Visualization of the parsed tree using Graphviz](http://static.kummerlaender.eu/media/parser_tree.png){: .full}
+![Visualization of the parsed tree using Graphviz](http://static.kummerlaender.eu/media/parser_tree.png)
[Graphviz]: http://www.graphviz.org/
[Github]: https://github.com/KnairdA/SimpleParser/