Home » Wiki » wiki tutorial » Historial » Diferencias
Diferencias entre las revisiones de 07:53, 23 Julio 2012, creado por lammi87, y la revisión de 07:41, 23 Julio 2012
Nota: el texto en rojo ha sido borrado de la revisión anterior, el texto en verde ha sido agregado en esta revisión y el texto en gris no ha sido cambiado
diferencias en el campo: el titulo
wiki tutorial
diferencias en el campo: el texto de la página
[p]This wiki tutorial describes the wiki formatting tags used on h-node. In order to learn the wiki tags, just practice editing pages and see the results with preview.[/p]
[i]NOTE: [u]This page is under construction[/u][/i]

__TOC__

[*] [h1]Headers[/h1][/*]

[h1]header 1[/h1]
[list]
[code]{{h1}}header 1{{/h1}}[/code]
[p]header 1 is similar to the HTML <h1>, just replace < with [ [/p]
[/list]


[h2]header 2[/h2]
[list]
[code]{{h2}}header 2{{/h2}}[/code]
[p]header 2 is similar to the HTML <h2>, just replace < with [ [/p]
[/list]


[h3]header 3[/h3]
[list]
[code]{{h3}}header 3{{/h3}}[/code]
[p]header 3 is similar to the HTML <h3>, just replace < with [ [/p]
[/list]


[*] [h1]Text formatting[/h1][/*]

[h2]Paragraph[/h2]
[list]
[p]This is a paragraph.[/p]
[code]{{p}}This is a paragraph.{{/p}}[/code]
[p]It is similar to the HTML <p>, just replace < with [ [/p]
[/list]


[h2]Bold[/h2]
[list]
[p][b]This text has been written in bold.[/b]
[code]{{b}}This text has been written in bold.{{/b}}[/code]
It is similar to the HTML <b>, just replace < with [[/p][/list]


[h2]Italic[/h2]
[list]
[p][i]This text has been written in italic.[/i]
[code]{{i}}This text has been written in italic.{{/i}}[/code]
It is similar to the HTML <i>, just replace < with [[/p]
[/list]


[h2]Underline[/h2]
[list]
[p][u]This text has been underlined.[/u]
[code]{{u}}This text has been underlined.{{/u}}[/code]
It is similar to the HTML <u>, just replace < with [[/p]
[/list]


[h2]Deleted[/h2]
[list]
[p][del]This text has been deleted.[/del]
[code]{{del}}This text has been deleted.{{/del}}[/code]
It is similar to the HTML <del>, just replace < with [[/p]
[/list]


[*] [h1]Code[/h1][/*]

[list]
[p]Here is a section of code.[/p]
[code]
A section
of code
110101001110101
[/code]
[p]Code:[/p]
[code]
{{code}}
A section
of code
110101001110101
{{/code}}
[/code]
[/list]


[*] [h1]Linking[/h1][/*]

[h2]How to link to other wiki pages[/h2]
[list]
[p]Example: a link to the [[Main Page]] (use the square brackets [[ and write inside them the title of the wiki page you want to link, just like you would do in a Wikipedia page).[/p]
[code]{{{{Main Page}}}}[/code]
[p][b]NB: Write the title as it is written inside the page. For example write {{{{Main Page}}}} and not {{{{Main-Page}}}}. Even if both will work, the first is better to see. For example, if you have to link this page write {{{{wiki tutorial}}}} (without -), and not {{{{wiki-tutorial}}}}.[/b][/p]
[/list]


[h2]What will happen to the old links if I change the title of a page?[/h2]
[list]
[p]The old links will be redirected to the new title, since all the old titles are saved in the old revisions of the page. Anyway it would be better (if possible) to update the links too.[/p]
[/list]


[h2]How to link to other wiki pages (with a different text of the link)[/h2]
[list]
[p]Example: this is a link to this wiki page (wiki tutorial) with a different text of the link: [[wiki tutorial|some text]].[/p]
[code]{{{{wiki tutorial|some text}}}}[/code]
[/list]


[h2]How to link to external resources (or to h-node.com pages out of the wiki)[/h2]
[list]
[p]Example: this is a link to an external resource [a]http://www.fsf.org[/a][/p]
[code]{{a}}http://www.fsf.org{{/a}}[/code]
[/list]


[h2]How to link to external resources (with a different text of the link)[/h2]
[list]
[p]Example: this is a link to an external resource with a different text [a]http://www.fsf.org|free software foundation website[/a][/p]
[code]{{a}}http://www.fsf.org|free software foundation website{{/a}}[/code]
[/list]


[*] [h1]Lists[/h1][/*]

[h2]Single listed item.[/h2]
[list]
[p][*]Item[/*][/p]
[code]
{{*}}Item{{/*}}
[/code]
[/list]


[h2]Ordered list.[/h2]
[list]
[*]Item 1[/*]
[*]Item 2[/*]
[*]Item 3[/*]
[/list]
[list]
[code]
{{list}}
{{*}}Item 1{{/*}}
{{*}}Item 2{{/*}}
{{*}}Item 3{{/*}}
{{/list}}
[/code]
[/list]


[h2]Numbered list.[/h2]
[enum]
[*]Item 1[/*]
[*]Item 2[/*]
[*]Item 3[/*]
[/enum]
[list]
[code]
{{enum}}
{{*}}Item 1{{/*}}
{{*}}Item 2{{/*}}
{{*}}Item 3{{/*}}
{{/enum}}
[/code]
[/list]


[*] [h1]Wiki Functions[/h1][/*]

[h2]Table of Contents[/h2]
[code]__toc__[/code] [list]
[code]
__toc__
[/code]

[p]Displays the [i]Table of contents[/i] at the beginning of the wiki.[/p]
[p][i]NOTE: In order to activate this function replace [b]toc[/b] with [b]TOC[/b] (Upper case)[/i][/p]
[/list]


[h2]Disabling tags [/h2]
In [list]
[p]In
order to disable the tags we use a double { and } to place replace a [ and ], so tags are not enable on the page. page.[/p]
[p][[example]][/p]
[code]{{{{example}}}}[/code]
[i]Above we used four [b]{[/b] to place two [b][ [/b] and another four [b]}[/b] to place two [b]][/b][/i]
[/list]


[p][b]Return to [[Help]] Page[/b][/p]

[lang]
[[tutorial della wiki|italiano]]
[[tutorial del wiki|Español]]
[/lang]
El contenido de esta página está en Dominio Público. (vea la página CC0 para información detallada). Cualquiera es libre de copiar, modificar, publicar, usar, vender o distribuir el texto para cualquier propósito, comercial o no comercial, y por cualquier medio.
h-node.org is a hardware database project. It runs the h-source PHP software, commit cdeda15, available under the GNU General Public (GPLv3) License.
JavaScript license information