MetaFilter's site and server can always use upgrades of hardware, software, and bandwidth, as well as more stable funding for continued support of its small but high-skilled moderation and backend team! If you'd like to chip in, you can donate to Metafilter.

Formatting

From Mefi Wiki
Jump to navigationJump to search

Formatting a post is, for the most part, as simple as normal web conventions: don't SHOUT; use punctuation; add paragraph breaks.

Quotations

Generally, you should set off a quotation longer than a line with italics or some other obvious convention. Do not reply by quoting, except in limited fashion, because this adds to the reading workload for others, and can even be disorienting to navigate.

Replying

When directing a comment at another user begin your comment with the person's username. Use of the @Username convention is strongly discouraged.

Signatures

Don't post a signature in your comment or post. It's extra work for you, and it makes you look like a weenie. Rely on your username like the rest of us.

HTML

More esoterically, the experienced MeFite can enhance a post or comment with fancy HTML. Due to abuse, certain HTML tags are disallowed.

Disallowed Tags

  • <big> : Makes text bigger.
  • <font> : permits confusing use of other fonts, big text, and generally tends toward abuse
  • <img> : See Image Links.
  • <mark> : Highlights text. Was disabled after being discovered in this Metatalk thread

These tags will be edited out by the text parser.

Known Allowed Tags

  • <b> : bold, example
  • <i> : italics, example
  • <em> : emphasis, example
  • <strong> : strong, example
  • <a href> : especially with Link Titles, which generate pop-up tags
  • <small> : allows under-emphasis of some text, for asides and interpolations; may be nested for even smaller text, (note: multiple small tags appear only in Safari & Firefox but not IE). example of small, with another small
  • <blockquote> : did not work with older CSS, now works inside posts and comments; not recommended unless you must quote large blocks of text. To avoid too much whitespace appearing in the comment, separate this tag by spaces instead of new lines, as in "There's a lengthy quote here: <blockquote> Lengthy quote </blockquote> Further quote discussion."

    example

  • <s> or <strike> : Strike though, example
  • <sup> : Superscript, example
  • <sub> : Subscript, example
  • <abbr> : Abbreviation, which the wiki will not allow, MeTa example (mouseover), working example
  • <blink> : blink, which will work in Firefox but not IE or Safari, which the wiki will not allow, <blink>example</blink>, working example
  • <code> and <pre> : for laying out ASCII Art or computer code.
  • <ol>, <ul>, and <li> : ordered and unordered lists.
  • <details> : Details, useful for hiding spoilers by default. details can be nested. discussed here, example html (demonstrated here):
 <details><summary>[Click for spoiler]</summary>Take your stinking paws off me, you damn dirty ape!!!</details>

In truth, most of HTML 4 is permitted, simply because the text parser does not edit it out during preview.

False Tags

e.g. <homer>Doh!</homer>

Some will work, but others may be parsed out, and a danger is that the parser will leave broken HTML in its wake. Preview such comments carefully.

To be absolutely sure not to confuse the parser, it's a good idea to use the HTML character entities for the open and close brackets. &lt; for < and &gt; for >. See below for more about extended characters.

Extended named characters

Created using HTML conventions such as & for the ampersand. Can be very tricky to navigate character sets, and you can't be sure the reader has the right one in use. Hearts (♥ = &hearts;), moons, stars, and blue whales may be fun, but don't expect it to work.

Numeric character entities

These are characters entered in a numeric format (decimal or hex). As an example ξ can be represented as either &#958; in decimal or &#x03be; in hex. Evidently the text-parser strips these references out, even if the live-preview formats beautifully, so--handy as they might be--just use the unicode directly.

UBB tags

The bracket-enclosed style of tag, e.g. <nowiki>[b] for bold, is special to UBB and compatible bulletin board software. MetaFilter does not support these.