skriv tips

Citat

Copyleft uses copyright law, but flips it over to serve the opposite of its usual purpose: instead of a means of privatizing software, it becomes a means of keeping software free.

— Richard M. Stallman


  • Accepterade HTML taggar: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <p> <pre> <br>

    Denna webbplats tillåter innehåll med HTML. Att lära sig HTML kan kännas som en övermäktig uppgift, men att lära sig de enklaste HTML-"taggarna" är mycket enkelt. Denna tabell ger exempel för varje tagg som är aktiv på webbplatsen.

    För mer information, se W3C:s HTML-specifikation eller använd en sökmotor för att hitta andra webbplatser som förklarar HTML.

    TaggbeskrivningYou TypeYou Get
    Ankare används för att skapa länkar till andra sidor.<a href="http://www.piratpartiet.se">Piratpartiet</a>Piratpartiet
    Betonat/kursivt<em>Betonat/kursivt</em>Betonat/kursivt
    Förstärkt/fet<strong>Förstärkt/fet</strong>Förstärkt/fet
    Citerat<cite>Citerat</cite>Citerat
    Kodad text som används för att visa programmeringskod.<code>Kodat</code>Kodat
    Onumrerad lista - använd <li> för att påbörja varje ny listrad<ul> <li>Första post</li> <li>Andra post</li> </ul>
    • Första post
    • Andra post
    Numrerad lista - använd <li> för att påbörja varje ny listrad<ol> <li>Första post</li> <li>Andra post</li> </ol>
    1. Första post
    2. Andra post
    Definitionslistor liknar andra listor i HTML. <dl> inleder listan, <dt> inleder definitionstermen och <dd> inleder definitionsbeskrivningen.<dl> <dt>Första term</dt> <dd>Första definition</dd> <dt>Andra term</dt> <dd>Andra definitionen</dd> </dl>
    Första term
    Första definition
    Andra term
    Andra definitionen
    Som förval läggs stycketaggar till automatiskt. Använd denna tagg för att lägga till flera.<p>Första stycket.</p> <p>Andra stycket.</p>

    Första stycket.

    Andra stycket.

    Förformaterat<pre>Förformaterat</pre>
    Förformaterat
    Som förval läggs radbrytningstaggar till automatiskt, så använd denna tagg för att lägga till flera. Den här taggen används lite annorlunda i och med att den inte har en start- och sluttagg som övriga taggar. Använd ett extra "/" inuti taggen för att hålla XHTML 1.0-kompatibilitet.Text med <br/>radbrytningText med
    radbrytning

    De flesta ovanliga tecken kan skrivas in direkt utan problem.

    Om du råkar ut för problem, försök använda HTML-teckenenheter. Ett vanligt exempel är &amp; för ett &-tecken. En komplett lista över teckenenheter ("entities") finns på HTML entities.Några av de tillgängliga tecknen är:

    TeckenbeskrivningYou TypeYou Get
    Ochtecken&amp;&
    Större än&gt;>
    Mindre än&lt;<
    Citationstecken&quot;"
  • Rader och stycken hanteras automatiskt. Radbrytningar (<br />)och stycke-taggar (<p> och </p>) sätts in automatiskt. Omstycken inte känns av är det bara att lägga till ett par tomrader.
  • 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.