From 721f2bc907fb81395a0532feb203908abb71b7d9 Mon Sep 17 00:00:00 2001 From: clYd3r Date: Sat, 24 Jun 2017 14:40:18 +0200 Subject: [PATCH] Add syntax highlighting to the readme (#478) --- README.md | 171 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 89 insertions(+), 82 deletions(-) diff --git a/README.md b/README.md index 93b6dc7..5a54896 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,13 @@ compilers instead of DMD. To install, simply place the generated binary (in the # Usage The following examples assume that we are analyzing a simple file called helloworld.d - import std.stdio; - void main(string[] args) - { - writeln("Hello World"); - } +```d +import std.stdio; +void main(string[] args) +{ + writeln("Hello World"); +} +``` ### Token Count The "--tokenCount" or "-t" option prints the number of tokens in the given file @@ -214,83 +216,88 @@ If a `dscanner.ini` file is locate in the working directory or any of it's paren The "--ast" or "--xml" options will dump the complete abstract syntax tree of the given source file to standard output in XML format. - $ dscanner --ast helloworld.d - - - - - - std - stdio - - - - - - - main - - - void - - - - - args - - - - - - string - - - - - - - args - - - - - - - - - - - - - - - - writeln - - - - - - - - Hello World - - - - - - - - - - - - - - - - - +```sh +$ dscanner --ast helloworld.d +``` + +```xml + + + + + +std +stdio + + + + + + +main + + +void + + + + +args + + + + + +string + + + + + + +args + + + + + + + + + + + + + + + +writeln + + + + + + + +Hello World + + + + + + + + + + + + + + + + + +``` For more readable output, pipe the command through [xmllint](http://xmlsoft.org/xmllint.html) using its formatting switch.