Giter Site home page Giter Site logo

Comments (1)

bartTC avatar bartTC commented on June 14, 2024

Mmh no @fthuin, this worked out of the box for me without issues. The only thing I see is that your code block is only intended with two spaces, but I think reStructuredText requires 4 spaces. (Though I would not think that would draw 'pygments not found'.)

Let me show you how I tested it, it might help you.

~/Workspace/django-markup master+$ pip install -U docutils pygments
Requirement already up-to-date: docutils
Requirement already up-to-date: pygments

~/Workspace/django-markup master+$ pip list
Django (1.11.1)
docutils (0.14)
Pygments (2.2.0)
...
~/Workspace/django-markup master+$ manage.py shell
Python 2.7.13 (default, Apr  3 2017, 18:57:07)

In [1]: from django_markup.markup import formatter

In [2]: text = '''
   ...: Some **rST** text.
   ...:
   ...: .. code-block:: python
   ...:
   ...:     def test():
   ...:       return 'Hello World'
   ...: '''

In [3]: formatter(text, filter_name='restructuredtext')
Out[3]: u'<div class="document">\n<p>Some <strong>rST</strong> text.</p>\n<pre class="code python literal-block">\n<span class="keyword">def</span> <span class="name function">test</span><span class="punctuation">():</span>\n  <span class="keyword">return</span> <span class="literal string single">\'Hello World\'</span>\n</pre>\n</div>\n'
~/Workspace/django-markup master+$ manage.py shell
Python 3.6.1 (default, Apr 29 2017, 22:13:10)

In [1]: from django_markup.markup import formatter

In [2]: text = '''
   ...: Some **rST** text.
   ...:
   ...: .. code-block:: python
   ...:
   ...:     def test():
   ...:       return 'Hello World'
   ...: '''

In [3]: formatter(text, filter_name='restructuredtext')
Out[3]: '<div class="document">\n<p>Some <strong>rST</strong> text.</p>\n<pre class="code python literal-block">\n<span class="keyword">def</span> <span class="name function">test</span><span class="punctuation">():</span>\n  <span class="keyword">return</span> <span class="literal string single">\'Hello World\'</span>\n</pre>\n</div>\n'

from django-markup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.