szerkesztési tippek

  • Engedélyezett HTML elemek: <a> <em> <strong> <b> <cite> <i> <code> <ul> <ol> <li> <dl> <dt> <dd> <br> <img> <del>

    A webhely lehetőséget ad HTML formában írt tartalom bevitelére. Míg a teljes HTML nyelv megtanulása túl nagy feladatnak tűnhet, néhány egyszerű jelölés alkalmazását könnyű elsajátítani. Az alábbiakban a webhelyen használható fontosabb jelölésekről olvasható részletes információ.

    Szakmai érdeklődésűek számára a W3C angel nyelvű HTML Specifications oldala nyújthat további részleteket, de a keresők is sok leírást adhatnak találatként a HTML-re keresve.

    Jelölő leírásaBeírandóEredmény
    A linkek más webhelyekre nyújthatnak kapcsolatot.<a href="http://halaszferenc.hu">HalaszFerenc.hu</a>HalaszFerenc.hu
    Kiemelt<em>Kiemelt</em>Kiemelt
    Fontos<strong>Fontos</strong>Fontos
    Vastag<b>Vastag</b>Vastag
    Idézett<cite>Idézett</cite>Idézett
    Dőlt<i>Dőlt</i>Dőlt
    Programok forráskódjainak megjelenítésére<code>Kód</code>Kód
    Felsorolásos lista: az <li> jelölővel kell megadni az elemeket<ul> <li>Első elem</li> <li>Második elem</li> </ul>
    • Első elem
    • Második elem
    Sorrendezett lista: az <li> jelölővel kell megadni az elemeket<ol> <li>Első elem</li> <li>Második elem</li> </ol>
    1. Első elem
    2. Második elem
    A definíciós listákat a <dl> elemmel kell jelölni, melyben a <dt> mutatja a definiált kifejezést, a <dd> pedig a definíciót.<dl> <dt>Első kifejezés</dt> <dd>Első definíció</dd> <dt>Második kifejezés</dt> <dd>Második definíció</dd> </dl>
    Első kifejezés
    Első definíció
    Második kifejezés
    Második definíció
    Alapértelmezésben a sörtörések automatikusan bekerülnek a szövegbe, de ezzel a jelölővel továbbiak helyezhetőek el. A többi jelölővel ellentétben ezt nem párban kell használni, így a végén található perjelet is meg kell adni az XHTML 1.0 szabványnak megfelelően.Szöveg <br />sortörésselSzöveg
    sortöréssel
    img jelölőhöz nincs súgó.
    Kitörölt<del>Kitörölt</del>Kitörölt

    A legtöbb speciális karakter gond nélkül beírható.

    Problémás elemek esetén HTML karakter jelölők alkalmazandók. Jellemző példa az &amp; írásmód az és (&) karakter jelöléséhez. A karakter jelölések teljes listája a HTML szabvány entitások oldalán található. Néhány fontosabb:

    Karakter leírásaBeírandóEredmény
    És jel&amp;&
    Nagyobb jel&gt;>
    Kisebb jel&lt;<
    Idézőjel&quot;"
  • A sorok és bekezdések automatikusan jelölésre kerülnek, azaz a <br /> sortörés, valamint a <p> és </p> bekezdés jelölők a megfelelő helyen megjelennek a szövegben. Ha a bekezdések nem jelennek meg helyesen, egy beillesztett üres sor a szövegben segíthet.
  • Images can be added to this post.
  • You may quickly link to image nodes using a special syntax. Each image code will be replaced by thumbnail linked to full size image node. Syntax:

    [image:node_id align=alignment hspace=n vspace=n border=n size=label width=n height=n nolink=(0|1) class=name style=style-data node=id]

    Every parameter except node_id is optional.

    Typically, you will specify one of size, width, or height, or none of them. If you use size=label, where label is one of the image size labels specified on the image settings page, the size associated with that label will be used. The sizes "thumbnail", "preview", and "original" are always available. If you use width=n or height=n, the image will be scaled to fit the specified width or height. If you use none of them, the thumbnail image size will be used.

    If you specify nolink=1, no link will be created to the image node. The default is to create a link to the image.

    Alternatively, if you specify node=id, a link will be created to the node with the given id.

    The align, hspace, vspace, border, class, and style parameters set the corresponding attributes in the generated img tag.

  • Quote filter

    Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

    [quote]This is a simple quote.[/quote]
    is displayed as:

    Quote:
    This is a simple quote.

    Additionally, there is an optional attribute which allows quotes to specify the original author.

    [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
    
    is displayed as:

    Mr. Drupal wrote:
    This is a quote with an attribution line.

    Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

        [quote]I think she says it best...
        [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
        but you can't argue with
        [quote=Ms. Reply]The more quotes, the merrier.
        Just don't get too carried away.[/quote]
        And I have nothing more to say.[/quote]
    is displayed as:

    Quote:
    I think she says it best...
    Ms. Quotation wrote:
    This is a quote nested within another quote.
    but you can't argue with
    Ms. Reply wrote:
    The more quotes, the merrier. Just don't get too carried away.
    And I have nothing more to say.