Questions tagged [creole]

Creole is a common wiki markup language to be used across different wikis.

Creole is a common wiki markup language to be used across different wikis. Its aim is not replacing existing markup but allowing wiki users to transfer content seamlessly across wikis, and for novice users to contribute more easily. See http://www.wikicreole.org/ and http://wiki.wikicreole.org/

21 questions
10
votes
3 answers

Which markup language? Markdown or?

I am currently looking for a markup language to use in a project. I want to allow site vistors to edit a wiki like page using a markup language (not HTML). I am implementing this site in Ruby on Rails, and would prefer (although not bound) to use…
Jason Whitehorn
  • 13,585
  • 9
  • 54
  • 68
9
votes
2 answers

Is there a standard content (mime) type I should be using for wiki formatted text files?

I am taking user input as either wiki formatted text (creole) or possibly markdown formatted text. I was wondering if there are there any existing content types standard for this sort of text. I was hoping for something like "text/wiki_creole" or…
pillingworth
  • 3,238
  • 2
  • 24
  • 49
7
votes
3 answers

Does a lightweight markup language library for Android exist?

Suppose I want to render/present a text transmitted in the form of some lightweight markup language. Are there any ready-to-use libraries for Android, which take as input text in a lightweight markup language and present it nicely? When I say…
Karen Tamrazyan
  • 157
  • 2
  • 12
4
votes
1 answer

Code snippets within lists (Creole wiki)

While Wikis and Wikipedia is still in Area 51, I'd like to ask this question about using the Creole wiki markup. I have the following code: # Initial instructions here. # Some instructions here. See code snippet below. {{{ #!python def foo(): …
Kit
  • 30,365
  • 39
  • 105
  • 149
4
votes
1 answer

How does one parse simple inline markup (i.e. *bold*), in Python?

How does one implement a parser (in Python) for a subset of wikitext that modifies text, namely: *bold*, /italics/, _underline_ I'm converting it to LaTeX, so the conversion is from: Hello, *world*! Let's /go/. to: Hello \textbf{world}! Let's…
Brian M. Hunt
  • 81,008
  • 74
  • 230
  • 343
3
votes
0 answers

Any way to insert HTML markup, or CSS, within a Creole page?

Using BitBucket for a small repo and would like to also use their provided wiki (which uses Creole). Is there a way to insert a stylesheet to use? Is there a way to insert HTML?
Justin
  • 4,434
  • 4
  • 28
  • 37
3
votes
2 answers

Change internal links rendering using python-creole

My goal is to create a locally-browsable clone of the bitbucket's wiki browser. Pages are written using creole syntax. I'm using python-creole to render the files into html. It works relatively fine, but there is a difference between the way…
ascobol
  • 7,554
  • 7
  • 49
  • 70
2
votes
1 answer

Working example of wikitext-to-HTML in ANTLR 3

I'm trying to flesh out a wikitext-to-HTML translator in ANTLR 3, but I keep getting stuck. Do you know of a working example that I can inspect? I tried the MediaWiki ANTLR grammar and the Wiki Creole grammar, but I can't get them to generate the…
Dan
  • 9,912
  • 18
  • 49
  • 70
2
votes
3 answers

Getting ResultSet column names

I'm using Symfony 1.1 with the Propel plugin and a MySQL database. To get my results I pass my query to a Propel connection and call executeQuery(). I'm trying to retrieve the column names of my ResultSet when my query fetches no results. When it…
clang1234
  • 1,704
  • 2
  • 16
  • 28
2
votes
1 answer

Creole 1.0 to HTML5 renderer for Java

I want to build a CMS/Wiki, I would like to make it with HTML5. Unfortunately I have been looking for a Wiki rendering engine that could take as input Creole 1.0 syntax and render it as HTML5, Can anyone point me to a library for this purpose? My…
ElderMael
  • 7,000
  • 5
  • 34
  • 53
1
vote
1 answer

Pyparsing - Rule Ambiguity

I am writing a Pyparsing grammar to convert Creole markup to HTML. I'm stuck because there's a bit of conflict trying to parse these two constructs: Image link: {{image.jpg|title}} Ignore formatting: {{{text}}} The way I'm parsing the image link is…
lanour
  • 123
  • 1
  • 5
1
vote
1 answer

convert Creole to LaTeX

Care to recommend a tool/workflow(s) for converting Creole wiki pages/files to LaTeX? I'm a grad student who has been documenting code and analyses using (a number of) wikis, mostly using Creole syntax. I like Creole, but eventually I'll need to…
TomRoche
  • 1,464
  • 1
  • 16
  • 25
1
vote
2 answers

Rails WikiCreole Error

I have an inherited project using the creole gem (0.5.0). In my view this line seems to break but I can't find out anything about it: <%= WikiCreole.creole_parse(@a.content) %> The error message is NameError in Knowledgebase_article#view…
martincarlin87
  • 10,848
  • 24
  • 98
  • 145
1
vote
1 answer

reverse engineering in symfony

I have a database. I am trying to reverse engineer using symfony to create schema.yml. I get this error message: [propel-schema-reverse] There was an error building XML from metadata: SQLSTATE[HY000]: General error: 2030 This command is not…
user186426
1
vote
1 answer

Creole syntax for external links for a wiki

Would like to know if there's any Creole syntax for having external links displayed on a new window. Basic syntax on links: HTML http://www.wikicreole.org/ CREOLE [[http://www.wikicreole.org/]] What about…
Jez
  • 305
  • 2
  • 12
1
2