Tagged Questions
14
votes
2answers
634 views
Syntax Highlighting with Pygments is failing via Liquid Templates String Error
I'm using Jekyll to convert my markdown and Pygments for syntax highlighting.
Here is the error maruku displays:
Liquid error: undefined method `join' for "\n song_info = []\n for song in songs:\n ...
14
votes
1answer
1k views
Using sphinx with Markdown instead of RST
I hate RST but love sphinx. Is there a way that sphinx reads markdown instead of reStructuredText?
7
votes
2answers
949 views
Python : How to convert markdown formatted text to text
I need to convert markdown text to plain text format to display summary in my website. I want the code in python.
5
votes
2answers
168 views
Computing article abstracts
I'm looking for a way to automatically produce an abstract, basically the first few sentances/paragraphs of a blog entry, to display in a list of articles (which are written in markdown). Currently, ...
4
votes
1answer
449 views
Markdown : Is there any direct way to generate pdf from markdown file by python
As the title, I want to use markdown as my main write format and I need to generate PDF files from markdown using pure python.
4
votes
2answers
382 views
Secure Python Markdown Library
I'd like to enable users to leave rich text comments, possibly using markdown. I've installed the libraries used on Reddit, but am concerned about the javascript injection attack which occurred last ...
4
votes
2answers
500 views
Python Markdown: Markdown Inside HTML Blocks
Is there an extra for Python Markdown that supports Markdown inside HTML block elements, e.g. div, p
i.e. is there a way to convert this:
<div id="content">
[Google](http://www.google.com)
...
4
votes
4answers
387 views
How can I parse marked up text for further processing?
See updated input and output data at Edit-1.
What I am trying to accomplish is turning
+ 1
+ 1.1
+ 1.1.1
- 1.1.1.1
- 1.1.1.2
+ 1.2
- 1.2.1
- 1.2.2
- 1.3
+ 2
- 3
into a python data ...
3
votes
1answer
181 views
Markdown with custom syntax?
I'm using python and using markdown. Is there a simple way to add a custom syntax? I want something like [ABC] expands to a certain tag or something.
or do I use regex?
3
votes
4answers
964 views
How do I make django's markdown filter transform a carriage return to <br />?
How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?
3
votes
1answer
966 views
Python Regex Search And Replace
I'm not new to Python but a complete newbie with regular expressions (on my to do list)
I am trying to use python re to convert a string such as
[Hollywood Holt](http://www.hollywoodholt.com)
to
...
2
votes
2answers
330 views
Markup language instead of HTML [closed]
I'm building a website, but don't want to write any HTML (or XML). I was thinking that I could use a nicer markup language instead.
I've looked at Markdown and reStructuredText, but they don't ...
2
votes
1answer
147 views
Python Markdown 64 bit installation problems
I'm working with Django for python.
I've tried to install Markdown 2.0.3 for python from here http://pypi.python.org/pypi/Markdown but it only has a windows 32 bit version and I have windows 7 64 bit.
...
2
votes
1answer
197 views
Check image urls using python-markdown
On a website I'm creating I'm using Python-Markdown to format news posts. To avoid issues with dead links and HTTP-content-on-HTTPS-page problems I'm requiring editors to upload all images to the site ...
2
votes
2answers
98 views
Generate permalinks on header with python markdown library
I was wondering how to generate permalinks from the following markup, using python markdown library:
A header
========
A paragraph
The desired output would be something like
<span ...
2
votes
2answers
347 views
Best practice for allowing Markdown in Python, while preventing XSS attacks?
I need to let users enter Markdown content to my web app, which has a Python back end. I don’t want to needlessly restrict their entries (e.g. by not allowing any HTML, which goes against the spirit ...
2
votes
4answers
2k views
How to run Ruby/Python scripts from inside PHP passing and receiving parameters?
I need to turn HTML into equivalent Markdown-structured text.
OBS.: Quick and clear way of doing this with PHP & Python.
As I am programming in PHP, some people indicates Markdownify to do the ...
2
votes
2answers
193 views
Cannot import markdown because of COMMAND_LINE_LOGGING_LEVEL
I've got a weird error where I can import markdown in Python, and I can import markdown in python inside the Django runserver, but I get the following when trying to import markdown inside of ...
2
votes
1answer
64 views
'meta' extension for Markdown not loading in Python2.6?
I'm trying to get the meta extension working with markdown in Python 2.6.
The code looks like this:
import markdown as m
print "Markdown version: ", m.version
file = "file.md"
md = m.Markdown( ...
2
votes
2answers
336 views
Markdown and Syntax Highlighting in Django with mixed code
I have some problems with following string while
trying to syntax highlight them:
Example
<code class="php"><? echo "<input type=\"text\">"; ?></code>
The php part is ...
2
votes
1answer
543 views
How do i convert WMD markdown syntax to HTML on my site?
Am using django and am implementing WMD on my site, am just wondering how do i convert the markdown syntax to HTML for display purposes, is there some sort of function i should call to do this ...
1
vote
1answer
77 views
how to display a markdown text in a chameleon template?
I am switching from django to pyramid, so I am totally new to pyramid and chameleon templates.
I have a text field in my model that contains markdown text. I need to convert the text to html and show ...
1
vote
1answer
128 views
limit Markdown in Django
I am using markdown on the comments system in my blog developed using django
I want to limit the possible format to accept just a basic one (with bold, italic, link and code)
How do I set Markdown ...
1
vote
1answer
110 views
Markdown in Django XSS safe
I am using Markdown in an app to display a user biography. I want the user to be able to slightly format the biography, so I'm letting them use the TinyMCE editor.
Then, displaying it in the Django ...
1
vote
1answer
222 views
Markdown previewer
I used python markdown with django, it's works perfectly, but it is not enough html previewer in the admin panel. Can't find any markdown previewer (I don't need full converter). Please, advise a ...
1
vote
1answer
116 views
Python Markdown module choking on unicode conversion, utf-8
I'm using the markdown module from web2py to handle marked up text. The problem is, people are submitting stuff with smartquotes, special characters etc, and I need to replace those with their ...
1
vote
1answer
152 views
Stringing together C and Python code in Go?
Update
I'm trying to create a simple Go function which will simply take in a string of reddit-style Markdown and return the appropriate HTML.
Right now, I know that having Discount installed is a ...
1
vote
2answers
82 views
Markdown emphasis - re substitution
How would you implement Markddown's emphasis or bold with regular expressions?
Or how is it possible to substitute re \*\*(.*)\*\* with what is inside ** **?
1
vote
1answer
431 views
How to STDIN and STDOUT with PHP and Python to use html2text and get a markdown formated text?
I am sending an HTML text from PHP to Python via STDIN. My objctive is to use Aaron Swartz's script "html2text.py" and to print the result to PHP via STDOUT.
Camarade Jan gave me the word and put me ...
0
votes
1answer
33 views
Disabling HTML Encoding within Output of Custom Python Markdown Extension
I have been working on creating a python markdown extension that will insert an image gallery within my django project when a custom tag is used. The actual extension is working, but the HTML that the ...
0
votes
1answer
43 views
When using python-markdown what determines the “final” look of the page?
When using python-markdown what determines the final look of the page?
I.e. what do I need to change, for example and more importantly where, to let's say, change the color of the H1 headers from ...
0
votes
0answers
84 views
Code Review: Python Markdown Static Blogger program [closed]
I was hoping I might get some of the brains in Stack Overflow to take a look at my Python static blogger application. I've been using it a few years in a pretty hacked up form. Lately I decided to ...
0
votes
0answers
48 views
Is python-markdown safe on untrusted input?
Python-Markdown includes features like escaping of raw HTML that are obviously intended to make it safe on untrusted input, and generally speaking Markdown is commonly used for rendering user input, ...
0
votes
0answers
65 views
python-markdown htmlStash placeholder not being replaced
I am currently developing a web application using django and and using python-markdown to convert markdown into HTML. There are a couple of situations that markdown currently doesn't handle, and as ...
0
votes
0answers
44 views
Convert markup syntax to both (unstyled) xhtml and latex (or pdf)
I'm writing a web app that allows authors to insert scientific articles as part of webpages and users to read them in browser or download as pdf files.
My need is to:
allow editor to deal with a ...
0
votes
1answer
87 views
Are there any lightweight markups that are easily customized?
I've written some amounts of LaTeX but nowadays I'm feeling lazy and I would like to write my next bigger project in Markdown, reStructuredText or Textile for easy readability. Unfortunately, I'd like ...
0
votes
2answers
117 views
how to use markdown with django? by only in 2 tags
I want to use markdown with django.
I want to allow use bold and strike tags.
Others don't convert.
Please teach me.
0
votes
1answer
308 views
Is there any way to convert Wikitext to Markdown in python?
Is there a python library which takes wikitext (as used in mediawiki) input and converts it to markdown?
0
votes
2answers
197 views
Translate github flavored markdown regex from ruby to python
I'm trying to get an implementation of github flavored markdown working in python, with no luck... I don't have much in the way of regex skills.
Here's the ruby code from github:
# in very clear ...
0
votes
2answers
154 views
how to pass class attribute and value to markdown syntax
Im using python markdown for my django project, when i have the value
#/usr/bin/env python
print "this is converted to html code block"
the output is
<pre><code>
#/usr/bin/env ...
0
votes
3answers
227 views
Where is the source code for a Python egg?
I'm attempting to add a video extension to the Python Markdown-2.0.3-py2.7.egg
Things aren't working, so I want to use pdb debugger to see what's going on.
I can't seem to find the source code to ...
0
votes
3answers
336 views
WMD Preview Doesn't Match Output
I am using WMD in a google app situation whereby the site administrator can update the pages of the site and the users see the information.
The preview function is working fine and I can see the ...
0
votes
3answers
278 views
How make a better markdown for developer blog
I'm rebuilding my blog at http://www.elmalabarista.com/blog/. I have use in my previous version markdown and now I remember why I have almost zero code samples. Doing code samples in markdown is very ...
0
votes
4answers
617 views
Custom Markup in Django
Can anyone give me an idea or perhaps some references on how to create custom markups for django using textile or Markdown(or am I thinking wrong here)?
For example: I'd like to convert the following ...
0
votes
6answers
1k views
How do I get python-markdown to additionally “urlify” links when formatting plain text?
Markdown is a great tool for formatting plain text into pretty html, but it doesn't turn plain-text links into URLs automatically. Like this one:
http://www.google.com/
How do I get markdown to add ...