From 1a1c8681a43b205f9ef8912f15f7f0f6e33ee3ea Mon Sep 17 00:00:00 2001 From: Joel Clermont Date: Fri, 22 Mar 2013 22:57:55 -0300 Subject: [PATCH] Enable inline PHP syntax highlighting Pygments has a "startinline" option which is only relevant for the PhpLexer. It allows syntax highlighting without the opening lang, :formatter => 'html', :options => {:encoding => 'utf-8'}) + highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8', :startinline => true}) rescue MentosError raise "Pygments can't parse unknown language: #{lang}." end File.open(path, 'w') {|f| f.print(highlighted_code) } end else - highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8'}) + highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8', :startinline => true}) end highlighted_code end