[EsFormalFormattingRules]: Spanish / Espaņol


Formatting is applied in the following order. Note that this describes the disposition of version 0.21 through 0.24. Prior versions differ slightly from what is indicated below.

Note that from version 0.25 this is slightly wrong, as documented in TaviReleaseNotes/LineBreaksAndContinuation. The actual rules as of version 0.25, will be documented shortly. --EvenHolen
Define "shortly" - 0.25 was released almost a year ago -- morpheus
I second that; lack of documentation is keeping me at 0.24 -- infinitera
  1. Raw HTML is parsed and stored for later display. See FormalFormattingRules/RawHTML. Due to the dangers of allowing raw HTML, this is disabled by default in the standard distribution.
  2. Source code is parsed and stored for later display. See FormalFormattingRules/SourceCode.
  3. Text enclosed in three backticks (`) is skipped over so that other wiki formatting rules are not applied to it. See FormalFormattingRules/Backticks.
  4. URLs that are enclosed in square brackets are parsed so they will be displayed as follows, with reference numbers increasing throughout the document: [1]. See FormalFormattingRules/Reference.
  5. URLs that are enclosed in square brackets, but have an accompanying description, are parsed so they will be displayed like [this]. See FormalFormattingRules/NamedReference.
  6. URLs that appear bare within a document are formatted as links to the given URL, like this: http://google.com/. Links that end in '.jpg', '.png', or '.gif' are instead displayed as images. See FormalFormattingRules/URL.
  7. In-line macros of the form [[MacroName]] are then parsed. See TaviMacros for more details. (The HTML Anchor macro and the Transclude macro, in particular, can be useful in formatting.)
  8. Transclusions (notated %%PageName%%) are processed. See TaviTransclusion. Note: as of 'Tavi 0.21 this syntax is deprecated, and will be removed in version 0.30; see the Transclude macro instead.
  9. Free links (links to wiki pages of the form ((free links))) are processed. See free links.
  10. InterWiki links (such as MeatBall:SoftSecurity?) are processed. See InterWiki.
  11. WikiWord's are processed into links to the given page. See WordsSmashedTogether. WikiWord's that are preceded by an exclamation mark ('!') aren't turned into links: WikiWord.
  12. Text surrounded in three single quotes is turned into bold:
    '''bold''' => bold
  13. Text surrounded in two single quotes is turned into italic:
    ''italic'' => italic
    '''''bold-italic''''' => bold-italic
  14. Text surrounded by two curly brackets is turned into teletype:
    this is {{teletype}} text => this is teletype text
  15. Lines surrounded by equal signs are turned into headings. See FormalFormattingRules/Headings.
  16. Lines enclosed in pairs of vertical bars (|) are turned into tables. See FormalFormattingRules/Tables.
  17. Four hyphens in a row: ---- form a horizontal bar, like <HR> in HTML
  18. Lines beginning with ':', '#', '*', and ';' are turned into various sorts of lists and indents. See FormalFormattingRules/Lists.
  19. Lastly, line breaks are turned into HTML <br /> elements, to insert a line break in the displayed document.