Welcome to the Fedora Wiki, wiki for Fedora Project, a free software Linux distributionThe Fedora Project Wiki is a helpful tool for the Fedora community. It is a public “whiteboard” with information about Fedora, its community, and its contributors. New wiki pages are like a clean whiteboard space for a meeting. The flexibility is useful for collaborative planning or frequent logging of information. The wiki doesn’t offer great support for durable documents, but they are more spontaneous and convenient.

How to write in Fedora Wiki

The Fedora Wiki uses default MediaWiki markup language. MediaWiki is easy to use and made popular by Wikipedia. It is similar but more simple than writing HTML for web pages.

A note on durable documents

Treat wiki pages like whiteboards – if it were wiped clean, it wouldn’t be a loss of critical information. If you are writing something that needs to be durable, consider publishing it in Fedora Documentation. These documents benefit from version control, search engine ranking, and offering valuable content to our community and users. Visit the documentation Pagure project for on-boarding for new document repositories.

Common syntax

Here is a set of common syntax for basic formatting. This lets you write in bold, italics, and underline, add images, and insert links.

Description You type You get
Italics ''italics'' italics
Italics, bold, and both '''bold''' bold
Italics and bold '''''both''''' both
Underline your text <u>This topic is notable</u> This topic is notable
Adding a strikethrough <s>This topic isn’t [[WP:N|notable]].</s> This topic isn’t notable.
Adding a hyperlink [http://www.wikipedia.org Wikipedia] Wikipedia
Show an image [[File:Wiki.png|thumb|Caption]]

Caption


Advanced MediaWiki syntax

The following examples add more formatting to your wiki contributions, including tables, lists, and headers.

With the new wiki theme, pay close attention to tables. To render tables with borders, add a class="wikitable" metadata to your table (see below for an example). An issue against the theme is open to make this behavior the default.

Description You type You get
Section Headings ==Level 2==
===Level 3===
====Level 4====
=====Level 5=====
======Level 6======do not use  =Level 1=  as it is for page titles

Level 2

Level 3

Level 4

Level 5
Level 6
Bulleted list * One
* Two
** Two point one
* Three
  • One
  • Two
    • Two point one
  • Three
Numbered list # One
# Two
## Two point one
# Three
  1. One
  2. Two
    1. Two point one
  3. Three
Indented Text no indent (normal)
:first indent
::second indent
:::third indent
no indent (normal)

first indent

second indent

third indent
Adding Source Code
function <code>int m2()</code> is nice.
function int m2() is nice.
Showing Bordered Tables {| class=”wikitable”
|-
! Header 1
! Header 2
! Header 3
|-
| row 1, cell 1
| row 1, cell 2
| row 1, cell 3
|-
| row 2, cell 1
| row 2, cell 2
| row 2, cell 3
|}
Header 1 Header 2 Header 3
row 1, cell 1 row 1, cell 2 row 1, cell 3
row 2, cell 1 row 2, cell 2 row 2, cell 3