Community Central
Community Central
No edit summary
m (Reverted edits by Liliya Misbakhova (talk | block) to last version by TK-999)
Line 1: Line 1:
  +
When editing, leaving comments or posting on wikis you'll need to know the basics of [[Help:Wikitext|wikitext]]. It's true we have our awesome '''editor '''that helps with editing, but there are times where you'll need to edit using wiki text. Such situations can occur when leaving comments on blogs or article pages or when a page is only editable in '''source mode'''.
quintura.ru - визуальный поисковик. Поисковая система строит карту терминов, которые часто встречаются в результатах поиска по заданному запросу. В центре карты располагается искомый запрос, а вокруг разбросаны термины по частоте их фигурирования в запросах. Те слова, которые кажутся вам неподходящими, можно исключать из карты, после чего из результатов поиска будут удалены сайты, на которых они встречаются. И наоборот, выбирая схожие по смыслу слова, можно «поднимать» в результатах поиска те ресурсы, которые наиболее точно соответствуют запросу.
 
  +
Также у поисковика quintura.ru есть еще одна полезная сторона-разработан новый поисковик для детей-quinturakids.com. Этот поисковик очень полезен для родителей, которые хотят оградить детей от вредного влияния интернета.
 
  +
Wikipedia defines wiki text or wiki markup as a lightweight markup language used to write pages in wiki websites. It is a simplified alternative/intermediate to HTML. Its ultimate purpose is to be converted by wiki software into HTML, which in turn is served to web browsers.<sup>[[wikipedia:WikiText|[1]]]</sup>
  +
  +
Below you'll find a cheat sheet to help you learn wiki text. It's a brief synopsis of wiki text but it's what you'll need to get started editing.
  +
  +
We cover the basics in text editing, formatting and hyperlinking. Once you get going on your wiki a lot of this stuff will come naturally over time &mdash; but until then you've got this for reference.
  +
  +
{| cellpadding="3" style="background:#cfdefa; border-spacing: 2px; height: 95%; margin: auto; padding: 3px; vertical-align: top; width: 90%;"
  +
!width="25%" style="background:#F0FFFF;"|Description
  +
!width="25%" style="background:#F0FFFF;"|Wikitext
  +
!width="50%" style="background:#F0FFFF;"|Result
  +
|-
  +
!
  +
<p style="text-align: left;">Text editing:</p>
  +
!
  +
|-
  +
|style="background:#fcfffe;"|Italic Text
  +
|style="background:#fcfffe;"|<nowiki>''italic''</nowiki>
  +
|style="background:#fcfffe;"|''italic''
  +
|-
  +
|style="background:#fcfffe;"|Bold
  +
|style="background:#fcfffe;"|<nowiki>'''bold'''</nowiki>
  +
|style="background:#fcfffe;"|'''bold'''
  +
|-
  +
|style="background:#fcfffe;"|Bold & Italic
  +
|style="background:#fcfffe;"|<nowiki>'''''bold & italic'''''</nowiki>
  +
|style="background:#fcfffe;"|'''''bold & italic'''''
  +
|-
  +
! style="text-align: left; "|Formating:
  +
!
  +
|-
  +
|style="background:#fcfffe;"|Heading options__NOTOC__
  +
|style="background:#fcfffe;"|
  +
<nowiki>=Heading 1=</nowiki><br />
  +
<nowiki>==Heading 2==</nowiki><br />
  +
<nowiki>===Heading 3===</nowiki><br />
  +
<nowiki>==== Level 4 ====</nowiki><br />
  +
<nowiki>===== Level 5 =====</nowiki><br />
  +
<nowiki>====== Level 6 ======</nowiki><br />
  +
|style="background:#fcfffe;"|
  +
=Heading 1=
  +
==Heading 2==
  +
===Heading 3===
  +
==== Level 4 ====
  +
===== Level 5 =====
  +
====== Level 6 ======
  +
|-
  +
|style="background:#fcfffe;"|Numbered list
  +
|style="background:#fcfffe;"|
  +
<nowiki># Numbered List</nowiki><br />
  +
<nowiki># next line</nowiki><br />
  +
<nowiki># next line</nowiki><br />
  +
<nowiki># next line</nowiki><br />
  +
|style="background:#fcfffe;"|
  +
# Numbered List
  +
# next line
  +
# next line
  +
# next line
  +
|
  +
|-
  +
|style="background:#fcfffe;"|Bulleted list
  +
|style="background:#fcfffe;"|
  +
<nowiki>* Bullet List</nowiki><br />
  +
<nowiki>* next line</nowiki><br />
  +
<nowiki>* another</nowiki><br />
  +
<nowiki>* one more</nowiki><br />
  +
<nowiki>** sub-bullet</nowiki><br />
  +
<nowiki>*** sub-sub-bullet</nowiki><br />
  +
|style="background:#fcfffe;"|
  +
* Bullet List
  +
* next line
  +
* another
  +
* one more
  +
** sub-bullet
  +
*** sub-sub-bullet
  +
|-
  +
|style="background:#fcfffe;"|Indenting
  +
|style="background:#fcfffe;"|
  +
<nowiki>:Single indent</nowiki><br />
  +
<nowiki>::Double indent</nowiki><br />
  +
<nowiki>:::Triple indent</nowiki>
  +
|style="background:#fcfffe;"|
  +
:Single indent
  +
::Double indent
  +
:::Triple indent
  +
|-
  +
|style="background:#fcfffe;"|Numbering & bullets
  +
|style="background:#fcfffe;"|
  +
<nowiki># Numbering & bullets</nowiki><br />
  +
<nowiki># One with sub-bullets</nowiki><br />
  +
<nowiki>#* sub-bullet one</nowiki><br />
  +
<nowiki>#* sub-bullet two</nowiki><br />
  +
<nowiki>#*: an indented note for sub-bullet two</nowiki><br />
  +
<nowiki>#* Sub-bullet with numerlines</nowiki><br />
  +
<nowiki>#*# a line</nowiki><br />
  +
<nowiki>#*# another</nowiki><br />
  +
<nowiki>#*# and another</nowiki><br />
  +
<nowiki>#*#: an indented note</nowiki><br />
  +
<nowiki>#*#:* a bullet for the note</nowiki><br />
  +
<nowiki>#*#:* another</nowiki><br />
  +
<nowiki>#*#:*; a bold note</nowiki><br />
  +
<nowiki>#* back down to sub-bullets </nowiki><br />
  +
<nowiki># back down to numbered list</nowiki><br />
  +
|style="background:#fcfffe;"|
  +
# Numbering & bullets
  +
# One with sub-bullets
  +
#* sub-bullet one
  +
#* sub-bullet two
  +
#*: an indented note for sub-bullet two
  +
#* Sub-bullet with numberlines
  +
#*# a line
  +
#*# another
  +
#*# and another
  +
#*#: an indented note
  +
#*#:* a bullet for the note
  +
#*#:* another
  +
#*#:*; a bold note
  +
#* back down to sub-bullets
  +
# back down to numbered list
  +
|-
  +
|style="background:#fcfffe;"|Horizontal line
  +
|style="background:#fcfffe;"|
  +
<nowiki>----</nowiki><br />
  +
|style="background:#fcfffe;"|
  +
----
  +
|-
  +
! style="text-align: left; "|Hyperlink:
  +
!
  +
|-
  +
|style="background:#fcfffe;"|Internal wiki page link
  +
|style="background:#fcfffe;"|<nowiki>[[link]]</nowiki>
  +
|style="background:#fcfffe; color:#0000FF;"|link
  +
|-
  +
|style="background:#fcfffe;"|Internal piped link (displays text)
  +
|style="background:#fcfffe;"|<nowiki>[[link|displayed text]]</nowiki>
  +
|style="background:#fcfffe; color: #0000FF;"|displayed text
  +
|-
  +
|style="background:#fcfffe;"|External link
  +
|style="background:#fcfffe;"|<nowiki>http://www.external.link.org</nowiki>
  +
|style="background:#fcfffe; color:#0000FF;"|http://www.external.link.org
  +
|-
  +
|style="background:#fcfffe;"|External link number
  +
|style="background:#fcfffe;"|<nowiki>[http://www.external.link.org]</nowiki>
  +
|style="background:#fcfffe;"|[http://www.external.link.org]
  +
|-
  +
|style="background:#fcfffe;"|External link displays text
  +
|style="background:#fcfffe;"|<nowiki>[http://www.external.link.org another name]</nowiki>
  +
|style="background:#fcfffe;"|[http://www.external.link.org another name]
  +
|-
  +
|style="background:#fcfffe;"|Category link
  +
|style="background:#fcfffe;"|
  +
<nowiki>[[:Category:Links]]</nowiki>
  +
|style="background:#fcfffe;"|
  +
[[:Category:Links]]
  +
|}
 
[[Category:Guides|Wiki Text]]
 
[[Category:Guides|Wiki Text]]

Revision as of 15:48, 20 November 2012

When editing, leaving comments or posting on wikis you'll need to know the basics of wikitext. It's true we have our awesome editor that helps with editing, but there are times where you'll need to edit using wiki text. Such situations can occur when leaving comments on blogs or article pages or when a page is only editable in source mode.

Wikipedia defines wiki text or wiki markup as a lightweight markup language used to write pages in wiki websites. It is a simplified alternative/intermediate to HTML. Its ultimate purpose is to be converted by wiki software into HTML, which in turn is served to web browsers.[1]

Below you'll find a cheat sheet to help you learn wiki text. It's a brief synopsis of wiki text but it's what you'll need to get started editing.

We cover the basics in text editing, formatting and hyperlinking. Once you get going on your wiki a lot of this stuff will come naturally over time — but until then you've got this for reference.

Description Wikitext Result

Text editing:

Italic Text ''italic'' italic
Bold '''bold''' bold
Bold & Italic '''''bold & italic''''' bold & italic
Formating:
Heading options

=Heading 1=
==Heading 2==
===Heading 3===
==== Level 4 ====
===== Level 5 =====
====== Level 6 ======

Heading 1

Heading 2

Heading 3

Level 4

Level 5
Level 6
Numbered list

# Numbered List
# next line
# next line
# next line

  1. Numbered List
  2. next line
  3. next line
  4. next line
Bulleted list

* Bullet List
* next line
* another
* one more
** sub-bullet
*** sub-sub-bullet

  • Bullet List
  • next line
  • another
  • one more
    • sub-bullet
      • sub-sub-bullet
Indenting

:Single indent
::Double indent
:::Triple indent

Single indent
Double indent
Triple indent
Numbering & bullets

# Numbering & bullets
# One with sub-bullets
#* sub-bullet one
#* sub-bullet two
#*: an indented note for sub-bullet two
#* Sub-bullet with numerlines
#*# a line
#*# another
#*# and another
#*#: an indented note
#*#:* a bullet for the note
#*#:* another
#*#:*; a bold note
#* back down to sub-bullets
# back down to numbered list

  1. Numbering & bullets
  2. One with sub-bullets
    • sub-bullet one
    • sub-bullet two
      an indented note for sub-bullet two
    • Sub-bullet with numberlines
      1. a line
      2. another
      3. and another
        an indented note
        • a bullet for the note
        • another
          a bold note
    • back down to sub-bullets
  3. back down to numbered list
Horizontal line

----


Hyperlink:
Internal wiki page link [[link]] link
Internal piped link (displays text) [[link|displayed text]] displayed text
External link http://www.external.link.org http://www.external.link.org
External link number [http://www.external.link.org] [1]
External link displays text [http://www.external.link.org another name] another name
Category link

[[:Category:Links]]

Category:Links