Fix highlighter consistency

- in some places php would not be highlighted as the `<?php` tag was missing
- in one place there was a duplicate `<?php` tage
- replaced `bash` with `console` for better highlighting
- ensured all console snippets are wrapped within highlighting code
- wrapped ini examples in highlighting code
This commit is contained in:
jrfnl
2014-12-07 22:31:05 +01:00
parent 0fcb7c0a91
commit 7d19feaf98
12 changed files with 53 additions and 31 deletions

View File

@@ -361,7 +361,6 @@ return ($a == 3) ? "yay" : "nope"; // return yay or nope if $a == 3
// vs
<?php
$a = 3;
return $a == 3 ? "yay" : "nope"; // return yay or nope if $a == 3
{% endhighlight %}