a generic source code syntax highlighter written in Python.

learn more… | top users | synonyms

0
votes
1answer
19 views

Running Installed Binaries from PHP Script (as apache)

I'm trying to write a PHP script to run a fairly simple shell command. The command is Pygmentize, which is a binary I have installed and is located in /usr/local/bin/pygmentize-1.4. This works fine ...
0
votes
1answer
90 views

How to import Python Markdown and pygments when developing Sublime Text plugins?

I copied markdown and pygments folder to my plugin's path, and did this: try: import sys sys.path.append("./markdown") sys.path.append("./pygments") import markdown except ...
0
votes
1answer
55 views

Python Markdown - Not adding codehilite

I am using Flask to write a Blog, with that I am using Markdown's Python library to generate HTML for me, I am willing to have syntax highlighting, therefore I am using markdown.markdown(string, ...
1
vote
1answer
31 views

Sphinx: Linking a Lexer with a style sheet using pygments

Good evening, Lets say I am using the built java lexer in pygments to highlight the syntax of a code block in a sphinx document. How do I change the style sheet that the java lexer is associated ...
0
votes
0answers
24 views

Sphinx: Using a custom style sheet with a custom lexer [duplicate]

Good afternoon, I have created a custom lexer and a custom style sheet in sphinx using pygments. Now I want to use the said style sheet with said lexer, does anyone know how to do this? It does not ...
2
votes
1answer
45 views

Redirect python tracebacks through Pygments

My application is invoked from run.py. I've installed Pygments and I'd like to redirect Python's output so that as tracebacks occur, they're formatted in an easier to read format. This is the command ...
1
vote
1answer
134 views

Ruby markdown interpreter with syntax similar to GitHub Flavored Markdown?

I run a blog using Jekyll, and thought I'd settle with Redcarpet markdown interpreter as it's developed and used by GitHub. Well, I just happened to come across a bug, went to checkout the issues, ...
4
votes
1answer
210 views

Why does Pygment.rb not highlight <code> tags within <pre class=“lang”> properly -i.e. Google Prettify friendly tags?

I am calling it in my view like this: <%= markdown question.body %> This is what my ApplicationHelper looks like: module ApplicationHelper class HTMLwithPygments < ...
1
vote
0answers
130 views

How do I get in-line code with Jekyll and Pygments?

I'm using Markdown with Liquid tags to mark up some code for a Jekyll-generated site and would like to include some code that is both in-line (in a paragraph) and has coloured syntax (with Pygments), ...
0
votes
1answer
76 views

Pygments codeblock formatter adds weird spaces to markdown codeblocks

As in the below picture: To explicitly point out what I'm talking about, I mean the spaces before every ., +, ], |, and =. As well as probably other punctuation that comes up elsewhere. I'm using ...
1
vote
0answers
79 views

How to configure Pygments' HTML formatter in Jekyll

I want to use Jekyll for Github pages and I'm struggling a bit with pygments. Jekyll does not seem to let me configure anything pygments related. There are two things I want (need) to change: Use ...
0
votes
2answers
79 views

PHP exec() with Pygments for PHP

I'm currently using the Pygments for PHP plugin that is located here: http://derek.simkowiak.net/pygments-for-php/. The line that actually calls Pygments from that code is an exec() passed: ...
1
vote
1answer
69 views

how does pygments guess lexer?

I'm using middleman-syntax to highlight code in my blog I'm writing my templates in markdown... and was wondering, how does pygments guess lexer? if I write ´´´ruby ruby code here ``` it ...
0
votes
1answer
52 views

Highlighting multiple lines

I am using pygments for syntax highlighting and want to highlight some lines in the code. This works fine for highlighting one line but how would I highlight multiple lines? I have tried comma and ...
0
votes
0answers
50 views

Error using minted in latex [closed]

Writing my thesis, I need to embed some source code. I've chosen minted for that purpose but I'm having problems with it. When I try to generate the PDF with PDFLatex (-shell-escape set), theres's ...
1
vote
2answers
285 views

Middleman & Haml with Github-style fenced code blocks

I'm starting using Middleman for static web pages & blogging purposes. I'm using it with a ZURB Fondation based template, Middleman-Foundation. It employs Haml, and I'm indeed inclined to use ...
5
votes
2answers
173 views

Extensive documentation on how to write a lexer for Pygments?

I have a dictionary of Stata keywords and reasonable knowledge of Stata syntax. I would like to devote a few hours to turn it into a Stata lexer for Pygments. However, I cannot find enough ...
0
votes
1answer
99 views

Pygments piped to less inside python script breaks highlighting

from pygments.lexers import RstLexer from pygments.formatters import TerminalFormatter from pygments import highlight output = highlight(source, RstLexer(), TerminalFormatter()) p = ...
1
vote
1answer
68 views

Pygments pygmentize pass string

I decided to use Pygments for a website I'm working on, but my lack of terminal knowledge is amazing. I want to use pygmentize to highlight syntax in blog posts, but as they are stored in database I ...
1
vote
1answer
155 views

org-mode highlighting using minted for latex and htmlize for html

I'm trying to rewrite some document from latex in org-mode. What I would like is the code to be highlighted in the exported latex/pdf and html. For latex/pdf I'm using pygments and for html ...
0
votes
0answers
58 views

Replace Pygmentize(i,e Python) Exe with IronPython for syntax highlighting

Thanks in advance I want to change implementation of Syntax highlighter functionality of TFS. Here is detail description of my question: Right now Syntax highlighter functionality is implemented using ...
2
votes
2answers
345 views

run jekyll --server failed in win7

when i run jekyll --server,it built failed ,and display this : [2013-01-10 15:34:52] regeneration: 1 files changed Liquid Exception: Failed to get header. in 2013-01-05-vim.markdown ...
1
vote
1answer
95 views

IPython qtconsole highlighting

Hey guys I'm using the IPython qtconsole and the directories are dark blue and I can't seem to find any way to change this in the theme. I'm using pygments with the monokai theme for the syntax ...
0
votes
1answer
46 views

C wrapper for pygments

Is it possible to use pygments from a C application? Is there a C library for pygments? I need to use it from a C++ program.
0
votes
1answer
74 views

How to handle error when exit code is zero in bash

I have the following script ~/bin/cat that uses pygmentize to display syntax highlightable files when ever possible if not just regular old cat. #!/bin/bash for var; do pygmentize "$var" 2> ...
0
votes
1answer
296 views

Jekyll Pygments Processing

I have been fighting with Jekyll and Pygments highlighting for a while now. I have pygments installed and have generated the css file, however when I run Jekyll to generate the site, the code ...
0
votes
1answer
84 views

Use a Pygments lexer with no mime type in Trac?

I'd like to have Trac colorize my aspx files but I can't find a way to make it work. I can easily add a mime-type/extension mapping for most Pygments lexers, but the CSharpAspxLexer doesn't have an ...
0
votes
1answer
80 views

Python markdown not respecting indentation

I'm having a problem here: i'm building out a simple blog, and I'm using markdown, pygments and django to do so. My content is in markdown and I wish to code-highlight it. It works fine, except ...
8
votes
3answers
2k views

Github flavored Markdown and pygments highlighting in Jekyll

I've deployed my Jekyll blog on a VPS. I would now like to add Github-flavored Markdown to it, using Pygments highlighting, but I don't know which files do I have to edit and how. So far, the only ...
3
votes
5answers
233 views

Utilizing emacs' or vim's syntax highlighter for command-line program?

I have a command-line program that spews JSON and YAML. By default it detects if pygments (pygmentize) is available and if it does, pass the output throught it to get a nice colorized output. However, ...
0
votes
1answer
129 views

Pygments style not being applied in Jekyll blog

http://joshhornby.co.uk/2012/11/14/test-test-test.html As you can see from the link the code at the bottom is just yellow. No styling is being applied. I have installed pygments through the terminal ...
1
vote
0answers
116 views

How to extend the list of keywords for pygments.lexers.shell

I am using Jekyll with Pygments to convert Markdown to static html pages. The content is prepared for GitHub pages. To display code samples (shell commands in this example) I add the following section ...
0
votes
1answer
274 views

Highlighting with Pygmentize in Phabricator not working

I installed Phabricator for working with Python projects. Everything is ok, but files view present them, as plain text. I want to some highlighting provided by Pygmentinze utility. I have installed ...
1
vote
1answer
88 views

Pygment lexer multiple tokens

I'm using the lexer of Pygments, a Python plugin. I want to get tokens for a C++ code, in particular when a new variable is declared, e.g. int a=3,b=5,c=4; Here a,b,c should be given the type ...
0
votes
1answer
171 views

Pygments syntax highlighting in Jekyll without starting a <div>

If you use Jekyll with the Pygments syntax-highlighting package, it’s possible to write {% highlight clojure %} (def something :foobar) {% endhighlight %} which produces a <div> containing ...
1
vote
2answers
364 views

Highlight a bunch of words?

I'm trying to highlight a bunch of words - so I've written a pygments extension. Basically it works, but still not to my satisfaction. Here's a simple idea which should work: highlight words ...
1
vote
1answer
97 views

how to change command for pycharm to convert rst to html

I install docutils and pygment for syntax highlighting on rst files. By using command: rst2html.py file.rst file.html I can get good result. When I use pycharm to compose rst file, it has ...
0
votes
2answers
118 views

Pygments lexer for AspectJ

I just asked the support guys on GitHub why AspectJ (*.aj) files are not syntax-highlighted. The answer was that they are using Pygments, but are unaware of any existing lexer for AspectJ. I did a ...
2
votes
4answers
239 views

Rails 3.1 CKEditor gem raw text

I'm using the ckeditor gem and when I use the paste as plain text dialog it encapsulates the text in quotes as well as < p> tags and < br> tags. Is there any way I can tell ckeditor not to use ...
1
vote
2answers
168 views

Pygments for Google App Engine Python Doesn't Work

This is my code: from google.appengine.ext import db import pygments from pygments import highlight from pygments.lexers import get_lexer_by_name from pygments.formatters import HtmlFormatter But I ...
0
votes
1answer
281 views

Syntax highlighting on GitHub Wiki refuses to work

This is driving me nuts. Syntax highlighting doesn't work on a single Wiki page in a project on GitHub. Take this page, for example: ...
2
votes
1answer
167 views

Sphinx Pygments lexer filter extension?

I have a Lisp-like language I would like to highlight using Pygments in Sphinx code snippet documentation. My approach is to extend the existing CommonLispLexer to add the built-in names using a ...
2
votes
1answer
529 views

Sphinx: List of supported languages for highlighting?

I'm using Sphinx for code documentation and use several languages within the code, I would like to setup highlighting for all of that code. Sphinx briefly mentions a few of the languages it supports ...
9
votes
1answer
928 views

How to support line number when using pygments with Jekyll

How can I number the code lines which are highlighted using pygments in Jekyll?
1
vote
1answer
210 views

How to support scrolling when using pygments with Jekyll

Is it possible to use horizontal scrolling rather than text wrapping in a code section highlughted with pygments when working in Jekyll. Source of document: {% highlight bash %} Full thread dump ...
1
vote
1answer
365 views

No Lexer For Alias Found

I'm attempting to use Pygments and Beautiful Soup as a code highlighting solution for the blog software I'm building for Google App Engine. How it works is that my HTML posts will use pre tags to ...
3
votes
2answers
666 views

Jekyll is ignoring Liquid tags within posts

I'm new to Jekyll, Liquid and Ruby as a whole, so sorry if I'm being really stupid. It seems that Jekyll is ignoring any liquid tags with posts (under the _posts directory), which results in output ...
0
votes
1answer
175 views

Pygmentize: No formatter found for name 'javascript'

I'm trying to use Pygments to generate a CSS file formatted for JavaScript. I can do it fine for HTML by using: pygmentize -S default -f html However, when I try for JavaScript: pygmentize -S ...
1
vote
2answers
2k views

Do I need to generate a css file from Pygments for my jekyll blog, to enable colorful code snippet?

This is my first time to use Jekyll and Pygments. But I don't know how to insert colorful code snippet. I successfully installed Pygments, following the official steps, with the markdown like this: ...
1
vote
2answers
363 views

Trac PHP Syntax Highlighting not working in Wiki

Syntax highlighting for PHP refuses to work on Wiki pages in my installation of Trac. It works beautifully when browsing source, but not in the Wiki. Javascript, C, and Python syntax highlighting ...

1 2