I use Syntax Highlighter by Alex Gorbatchev in my blog on Blogger. It perfectly works with all the programming languages I use. Recently I needed to highlight Windows Command Prompt commands and I found only brush: powershell option for the <pre> tag to do it. Unfortunately, it does not work exactly as I need.
I have theses commands:
taskkill /IM explorer.exe /F
cd /d %userprofile%\AppData\Local
del IconCache.db /a
shutdown /r /f /t 00
When I use <pre class="brush: powershell; gutter: false">CODE_GOES_HERE</pre>, it highlights cd, del and /r (not a command at all) but does not highlight taskkill and shutdown as I expect it to.
Is there any workaround to solve this problem and highlight Windows Command Prompt commands correctly? Or should I use another syntax highlighter in my blog?
Thank you for help.