If I run a python source file through pygments, it outputs html code whose elements class belong to some CSS file pygments is using. Could the style attributes be included in the outputted html so that I don't have to provide a CSS file?
|
feedback
|
|
By setting the noclasses attribute to True, only inline styles will be generated. Here's a snippet that does the job just fine:
| |||
|
feedback
|
|
@Ignacio: quite the opposite:
[ ref.: http://pygments.org/docs/formatters/, see HtmlFormatter ] ( Basically it is the same as Tempus's answer, I just thought that a full code snippet may save a few seconds ) ) PS. The ones who think that the original question is ill-posed, may imagine e.g. the task of pasting highlighted code into a blog entry hosted by a third-party service. | |||
|
feedback
|
|
Usually, your code is only one of many things on a web page. You often want code to look different from the other content. You, generally, want to control the style of the code as part of the overall page style. CSS is your first, best choice for this. However, you can embed the styles in the HTML if that seems better. Here's an example that shows the | |||||||||
feedback
|