MATLAB language posts don't look good under google-code-prettify. As far as I understand from this post, MATLAB is currently highlighted by using the default language syntax.

For example, you can see this question. Since % is the standard in MATLAB to write comments, but it is not known, comments look weird.

However, it has an option to write a custom .js that defines a new language. I was thinking about writing myself a custom .js that will do the trick, but before I do that, I want to make sure that it will actually be used in Stack Overflow, and my effort is not in vain.

Is it possible to add custom google-code-prettify .js files to the server of Stack Overflow?

share|improve this question
4  
We do have custom prettify javascript for a few languages, TeX for one. Ideally it'd be contributed back to prettify. – Kevin Montrose Feb 23 '12 at 18:47
I've been looking for a simple MATLAB highlighter but so far I've had no luck. Did you do your custom prettify? It would be nice if you post it somewhere if you did. – jmlopez Apr 6 '12 at 7:45
Don't forget Octave. – Mechanical snail Sep 13 '12 at 10:12
2  
@KevinMontrose, it's been integrated into prettify. Could you look at updating the version used on Stack Overflow? – Matthew Simoneau Mar 6 at 21:09

2 Answers

up vote 14 down vote accepted

Back in May 2012, I started a project hosted on GitHub that implements MATLAB syntax highlighting for google-code-prettify (released under the MIT License). See here for the initial announcement, plus there was some discussion in the MATLAB chat room.

It comes in two flavors, one that detects and stylize all core MATLAB functions (plus functions from select toolboxes), and another that doesn't (mainly to keep file size to a minimum).

Should Stack Overflow choose to use it, it's as simple as serving an additional JavaScript file, which extends the code prettifier to handle MATLAB code.

For the time being, I created a userscript version so people can try it immediately (I have been using it myself for some time now).

You can install the userscript directly from the link https://github.com/amroamroamro/prettify-matlab/raw/master/js/prettify-matlab.user.js or choose the "lite" version, https://github.com/amroamroamro/prettify-matlab/raw/no_functions/js/prettify-matlab.user.js.

share|improve this answer

Amro's support for the MATLAB language has been accepted into google-code-prettify and the new version has been released. Can we update the version used here on stackoverflow.com?

share|improve this answer
I totally agree that MATLAB syntax highlighting on SO sucks! I really hope it gets updated soon. – Oleg Komarov Apr 12 at 14:28

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged