Tagged Questions

27
votes
2answers
2k views

Which Stack Overflow-style Markdown (WMD) JavaScript editor should I use?

Background I'm working on an application which requires user-entered content, and I've decided to use a Stack Overflow-style Markdown editor. After researching this topic for the last few days, I ...
6
votes
2answers
156 views

Linking to and getting data from django models in user-entered text

I'm looking for functionality vaguely like that provided by Semantic MediaWiki. In short, I'd like for a user, in an arbitrary text field, to be able to do things like the following (I'm making up ...
5
votes
2answers
82 views

What are some Apps or add ons that get used to customize Django Admin

Im looking for a list or just suggestions on some Django Admin must haves or things that people tend to use. I'm particularly interested in adding a Wysiwyg or Markdown Editor to the the TextAreas in ...
4
votes
2answers
1k views

Syntax highlighting with Markdown & Pygments in Django

I've been trying to get syntax highlighting working in my simple Django (1.1) test app using Markdown (2.0.1) & Pygments (1.0). The idea is to generate HTML from the users input which is in ...
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?
2
votes
1answer
128 views

Error in {% markdown %} and {% textile %} filters in Django Nonrel

I'm having trouble using Markdown in Django Nonrel. I followed this instructions (added 'django.contrib.markup' to INSTALLED_APPS, include {% load markup %} in the template and use ...
2
votes
1answer
146 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
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
2answers
117 views

The correct place to put a markdown extension file in a django project?

I've created a markdown extension file (called mdx_xxx.py) for a django project I'm working on but I can't really decide where to put it. The documentation says that the file should reside on the ...
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
55 views

Pagedown(markdown editor) with Django

I trying to use the pagedown(markdown editor), the one that stackoverflow in my django based website. However to get the markdown editor in a textarea it is required to give the text area both id and ...
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
109 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
102 views

Why is markdown finding weird characters in my exported wordpress xml file?

Mac OSX 10.7 Python 2.7 Django 1.3 Markdown 2.0.3 I am trying to migrate from a wordpress blog to a django-powered one. I am using pigmonkey's django-basic-apps for it's xml parsing script, but every ...
1
vote
1answer
90 views

Getting markdown and urlize template tags to play nice

I'm using markdown to format some comments in a Django app. If I try to combine markdown and urlize, inevitably bad formatting errors happen (links get added where they don't belong or aren't ...
1
vote
1answer
91 views

Secured Markdown in Django

Does anybody know is there any django app/lib which give secured Markdown or other markup language? Or there is no any way to give users to use Markdown in secured for my server way?
1
vote
0answers
103 views

Django: how to best implement unit conversion a la Markdown?

Currently building a site on energy efficiency. I have a team of scientists readying articles for our custom Django CMS with lots of numbers and attached units located in their contributions. I would ...
1
vote
1answer
64 views

What are good methods for debugging a silently broken template tag?

I have a template that calls the markdown template tag from the django.contrib.markup library. On my local system it works fine, but on the server, for some reason, the content|markdown call returns ...
1
vote
3answers
548 views

Django templatetag for rendering a subset of html

I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered. Does anyone know of a ...
1
vote
3answers
329 views

How to switch web app from HTML to Markdown?

I've got a django-powered site. Currently, all of the textfields are just plain old text inputs that take raw HTML. I have no fancy editor or anything. I would like to start using Markdown and WMD to ...
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
94 views

Django templates and markdown

Suppose I have a Django template written in Markdown. Does it make sense to process the markdown first, and then render the template, or should I render the template, and then send it through the ...
0
votes
1answer
62 views

Django: markup - set the top heading

I am choosing between markup languages mentioned on https://docs.djangoproject.com/en/dev/ref/contrib/markup/ . But I need one specific thing - set the top heading. By default, there is h1 the first ...
0
votes
2answers
116 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
374 views

Django Markdown or WYSIWYG editor

I have user generated context that extends multiple paragraphs. I'd like to enable the user to create paragraphs, possibly change font-weight, but nothing too huge. I've seen a tutorial which uses ...
0
votes
1answer
95 views

Django Markdown works in dev but not in prod

I'm using the flatpages app with markdown and on the (django) development server markdown works fine. But when deployed on my staging server with apache/mod_python, all the markup vanish and I see ...
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
2answers
906 views

How can I embed a YouTube video in a Markdown enabled text field?

This is the code I'm trying to embed: <object width="480" height="385"><param name="movie" ...
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
1answer
711 views

django & markdown issue: 'NoneType' object has no attribute 'strip'

I have a problem about markdown and django integration. After I installed markdown and change my model class to: class Page(models.Model): class Translation(multilingual.Translation): title ...
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 ...