Enabling Liquid templating syntax highlight in webStorm/phpStorm

I’ve found out that Twig have a very similar syntax to Liquid, enabling the Twig plugin will highlight Liquid syntax and will keep the HTML highlight/autocomplete/emmet functionality working as opposed to the “textMate Liquid bundle”. Go to Settings > Editor > File Types find “Twig” on that list and associate Liquid files with it by … Read more

How do I embed source code or HTML in Open Office Org Presentations without using screenshots?

Some people says that copying code from Eclipse editor works well (UPDATE: Proven FALSE). Another alternative is exporting to RTF (can also export line numbers), or to clipboard, from Highlight and then opening/pasting it in OpenOffice.org. (UPDATE: Proven TRUE) Here is a Highlight GUI screen shot: You can also switch from OpenOffice.org to LibreOffice, and … Read more

How do I edit the Solarized (Light) theme in Sublime Text 3

I have managed to find a solution: Go to http://tmtheme-editor.herokuapp.com (someone has built a web-based theme editor). Once you have tweaked the colour syntax you can download the themename.tmTheme file. Move that file to /Users/username/Library/Application Support/Sublime Text 3/Packages/ User/ (if you are on a Mac). Load in the syntax theme from the top menu: Sublime … Read more

How do I set up a syntax highlighter on Blogger? [closed]

1. First, take backup of your blogger template 2. After that open your blogger template (In Edit HTML mode) & copy the all css given in this link before </b:skin> tag 3. Paste the followig code before </head> tag <script src=”http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shCore.js” type=”text/javascript”></script> <script src=”http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCpp.js” type=”text/javascript”></script> <script src=”http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCSharp.js” type=”text/javascript”></script> <script src=”http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCss.js” type=”text/javascript”></script> <script src=”http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushDelphi.js” type=”text/javascript”></script> <script … Read more