Questions tagged [wiki-markup]

Wikitext language, or wiki markup, is a lightweight markup language used to write pages in wiki websites, such as Wikipedia, and is a simplified alternative/intermediate to HTML. (A lightweight markup language is a markup language with a simple syntax, designed to be easy to enter with a simple text editor, and easy to read in its raw form.) Its ultimate purpose is to be converted by wiki software into HTML, which in turn is served to web browsers.

From MediaWiki.org:

Wikitext is a document written in a wiki markup language, such as the current one explained in Help:Editing (see also Markup spec/DTD). It is a mixture of content, markup, and metadata. The current and old versions of all pages of a wiki are stored in the database in the text table, in the form of wikitext.

41 questions
16
votes
2 answers

Escape | (vertical bar/pipe) in URL in Wiki Markup Template

Is it possible to escape and keep the nonstandard | character as is in an URL in a template Wiki Markup within a table? {| class="wikitable" |- ! Test in Table |- | [http://example.org/{var1}|{var2}|{var3} Example] |} Should render something like…
mxfh
  • 386
  • 1
  • 2
  • 11
15
votes
4 answers

How do I convert HTML code to Confluence-style Wiki Markup?

The API documentation for Mylyn Wikitext has functions to convert Wiki Markup to HTML, but I cannot find functions to convert / parse HTML code to Wiki Markup. Class MarkupParser has method parseToHTML, but where can I find the reverse?
Vinay Bedre
  • 366
  • 1
  • 6
  • 16
7
votes
2 answers

Wiki markup language with excellent table support

I'm developing a wiki with Python/Django, partly for educational purposes. Up to now I'm still missing the right markup language. I tried quite a view, including Creole and Markdown, which worked well except for the table support. Common wiki markup…
j0ker
  • 4,069
  • 4
  • 43
  • 65
6
votes
3 answers

Creating a category hierarchy in a MediaWiki environment

Background: I work with a large collaboration which centralizes a lot of documentation in a wiki structure. I have passing familiarity with wiki-markup and can create simple pages with links, etc. One major deficiency of my collaboration's wiki…
Jollyhrothgar
  • 63
  • 1
  • 1
  • 3
4
votes
1 answer

CKEditor and Wiki Markup (A Custom Data Processor?)

I am looking for a non-HTML Rich text editing solution. Since I do not want to allow users to post HTML code from fear of various XSS reasons I implemented a Wiki Markup solution using MarkItUp which works great. However, there is a loud demand…
Variant
  • 17,279
  • 4
  • 40
  • 65
4
votes
1 answer

Download wikipedia markup using Haskell

Using http-conduit I want to download the raw wikimedia markup for any page, for example the Wikipedia page Stack Overflow. Also, I'd like the solution to be applicable to wikimedia pages other than en.wikipedia.org, for example…
Uli Köhler
  • 13,012
  • 16
  • 70
  • 120
3
votes
2 answers

How to convert JIRA wiki markup to HTML programmly using Atlassian native API?

I am trying to get the description of an issue from JIRA to put it in a Confluence Storage Format template in order to create a page in Confluence. But I could't find a way to render the description raw data to a storage format recognizable format.…
qingl97
  • 327
  • 4
  • 14
2
votes
1 answer

Wiki code parser for .NET and BSD-like licensed

I need a wiki code parser on top of Microsoft .NET and licensed under BSD, Apache or similar open source licenses. Looking at other site's questions and googling I found the so-called ScrewTurn Wiki, which is a great product and it has its source…
Matías Fidemraizer
  • 63,804
  • 18
  • 124
  • 206
2
votes
0 answers

Change rendering of basic text to use

instead of

WikiPlex renders basic text without adding paragraph

tags, instead inserting
where there is a new line. Unfortunately, this prevents me from being able to target the resultant HTML using CSS. Is there a way to have WikiPlex render…

Mike Scott
  • 12,274
  • 8
  • 40
  • 53
2
votes
0 answers

Conversion XHTML to JIRA Markup and vice versa with the AtlassianRenderer

I have an Java application with Jira integration. The Integration means user may create an issue in the Application format and the Application will transfer it to the Jira Server. And vice versa: user firstly may create an issue on the Jira Server…
kirill.login
  • 899
  • 1
  • 13
  • 28
2
votes
0 answers

Wiki markup to confluence page using Python

Currently I have 'n' URLs written in wiki markup language and now I need to migrate the webpage to Confluence. I am able to create a Confluence page using python (pyconfluence), and add up whatever text I want to write. Using request module, I am…
Hunterr
  • 553
  • 1
  • 8
  • 28
2
votes
1 answer

Escape newline in source

There's a huge wiki page in our dokuwiki I have the pleasure of having to edit, the problem is that most of it is a giant table. I know you can insert a newline into the result without writing a newline in the markup (which would be interpreted as a…
Hashbrown
  • 12,091
  • 8
  • 72
  • 95
2
votes
1 answer

In MediaWiki, can I transclude a page's contents to be used as parameters for a template?

I have a template that takes parameters called "name" and "type". I am currently attempting to call that template and pass it the transcluded contents of a page called Input1 that simply says: name=Thing|type=Whatsit I am calling the template this…
user1134918
  • 129
  • 1
  • 8
2
votes
1 answer

Is there a common practice about footnotes used in developer's mail?

In the recent months, I've seen that many friends (many of them coders) started writing, long, elaborate mails with footnotes for link, meaning that they write paragraphs [1] and then [2] put the links at the bottom [3]. Like this. [1]…
Aubrey
  • 507
  • 4
  • 20
2
votes
1 answer

Sorted table of contents [TOC] in markup (md)

What is the best practice to list all H1 titles in markup language in sorted list? If I use [TOC] - order is somehow random. Is there a better way to do it than manually write all links in file?
knagode
  • 5,816
  • 5
  • 49
  • 65
1
2 3