summaryrefslogtreecommitdiff
path: root/README
blob: 86f80742ee2e63fb01d73aae3346a2f0c4281d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
=======
 about
=======

Python lib for:

 - creole markup -> html

 - html -> creole markup 

python-creole is pure python. No external libs needed.

The creole2html part based on the creole markup parser and emitter from the MoinMoin project by Radomir Dopieralski and Thomas Waldmann.

=========
 example
=========

>>> from creole import creole2html
>>> creole2html("This is **creole //markup//**")
u'<p>This is <strong>creole <i>markup</i></strong></p>\n'


>>> from creole import html2creole
>>> html2creole(u'<p>This is <strong>creole <i>markup</i></strong></p>\n')
u'This is **creole //markup//**'


See also: http://code.google.com/p/python-creole/source/browse/trunk/demo.py

=========
 history
=========

- v0.2.4

  - creole2html: ignore file extensions in image tag
  
    - see also: http://code.google.com/p/python-creole/issues/detail?id=7

- v0.2.3
 
  - html2creole bugfix/enhanced: convert image tag without alt attribute:
  
    - see also: http://code.google.com/p/python-creole/issues/detail?id=6
    - Thanks Betz Stefan alias 'encbladexp'

- v0.2.2

  - html2creole bugfix: convert '''<a href="/url/">Search & Destroy</a>'''

- v0.2.1

  - html2creole bugfixes in:
  
    - converting tables: ignore tbody tag and better handling p and a tags in td 
    - converting named entity

- v0.2

  - remove all django template tag stuff: http://code.google.com/p/python-creole/issues/detail?id=3
  - html code always escaped

- v0.1.1

  - improve macros stuff, patch by Vitja Makarov: http://code.google.com/p/python-creole/issues/detail?id=2

- v0.1.0

  - first version cut out from PyLucid CMS - http://www.pylucid.org

=======
 links
=======

:homepage:
  http://code.google.com/p/python-creole/

:SVN:
  http://python-creole.googlecode.com/svn/trunk/

:changes:
  http://code.google.com/p/python-creole/source/list

*(Readme text $Rev$)*