Fractal Softworks Forum

Starsector => Announcements => Topic started by: Trylobot on October 01, 2013, 07:24:30 PM

Title: Minor Announcement: SyntaxHighlighting now available
Post by: Trylobot on October 01, 2013, 07:24:30 PM
Thanks to Alex, you may now use

[code=java]your.code.here[/code]

to show syntax highlighted code in a forum post! There are of course other languages available as well. A list of valid syntax aliases is here: http://alexgorbatchev.com/SyntaxHighlighter/manual/brushes/
Note that it will not display in the "Preview" mode, but it does work when you really post. It's a known, minor shortcoming of the SMF plugin, but not really important once you know that it works.


Demo:

Code: java
for (int i = 0; i < 100; i++) {
    System.out.println("Test");
}
Title: Re: Minor Announcement: SyntaxHighlighting now available
Post by: Alex on April 22, 2019, 05:03:54 PM
Update: after the forum upgrade to SMF 2, I've had to switch to a different syntax highlighting mod, Code Highlighting (http://custom.simplemachines.org/mods/index.php?mod=2925).

The syntax is largely the same, but it doesn't handle //-style comments well (everything after that is treated as a comment), so one has to use /* */ style comments instead.