Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What am I missing?

Name: Anonymous 2010-03-21 8:06

#WORLD4CH'S POST FORMATTING GUIDE
[b] bold example
[u] underline example
[i] italic example
[o] overline example
[s] strikethrough example
[m] courier text example
[code] preserves syntax for code and colors text
For green text in code put a word in quotes "example"
for red put a # before the word #example
[spoiler] for spoilers example
[sup] makes text progressively smaller higher on the line example example
[sub] makes text progressively smaller lower on the line example example
[sup] and [sub] can be used for nesting too
[aa] For SJIS art. example
For ASCII art use [m] tag.
To quote put "> " on a new line, ignore the quotations but do keep the space.everything typed on that line will be quoted
example
To multiquote put a space after the '>'s below"
>first line[o]
other
lines
then
>[/o]
It becomes;
first line
then
other
lines
then

To do epic quotes add a space after the '>'s below:
>I'm[o]
>a[o]
>expert[o]
>quote[o]
[/o]lol[/o]lol[/o]lol[/o]
It becomes:
I'm
a
epic
quote
lol
lol
lol


[#] Ignores all BBcode tags inside it
[rem] hides all text inside it
[br] gives you a line break. Don't close this tag

Name: Anonymous 2010-03-21 8:33

>>3
Epic Win!!!
  var CPP_KEYWORDS = "abstract bool break case catch char class const " +
    "const_cast continue default delete deprecated dllexport dllimport do " +
    "double dynamic_cast else enum explicit extern false float for friend " +
    "goto if inline int long mutable naked namespace new noinline noreturn " +
    "nothrow novtable operator private property protected public register " +
    "reinterpret_cast return selectany short signed sizeof static " +
    "static_cast struct switch template this thread throw true try typedef " +
    "typeid typename union unsigned using declaration, directive uuid " +
    "virtual void volatile while typeof";
  var CSHARP_KEYWORDS = "as base by byte checked decimal delegate descending " +
    "event finally fixed foreach from group implicit in interface internal " +
    "into is lock null object out override orderby params readonly ref sbyte " +
    "sealed stackalloc string select uint ulong unchecked unsafe ushort var";
  var JAVA_KEYWORDS = "package synchronized boolean implements import throws " +
    "instanceof transient extends final strictfp native super";
  var JSCRIPT_KEYWORDS = "debugger export function with NaN Infinity";
  var PERL_KEYWORDS = "require sub unless until use elsif BEGIN END";
  var PYTHON_KEYWORDS = "and assert def del elif except exec global lambda " +
    "not or pass print raise yield False True None";
  var RUBY_KEYWORDS = "then end begin rescue ensure module when undef next " +
    "redo retry alias defined";
  var SH_KEYWORDS = "done fi";
  var LISP_KEYWORDS = "defun";

I hacked this from 4chan last year. Have fun, it is the list of words that appear in either blue (lowercase) or purple (uppercase).
Also this:
    var preceders = [
        "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=",
        "&=", "(", "*", "*=", /* "+", */ "+=", ",", /* "-", */ "-=",
        "->", /*".", "..", "...", handled below */ "/", "/=", ":", "::", ";",
        "<", "<<", "<<=", "<=", "=", "==", "===", ">",
        ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[",
        "^", "^=", "^^", "^^=", "{", "|", "|=", "||",
        "||=", "~", "break", "case", "continue", "delete",
        "do", "else", "finally", "instanceof",
        "return", "throw", "try", "typeof"
        ];
    var pattern = '(?:' +
      '(?:(?:^|[^0-9\.])\\.{1,3})|' +  // a dot that's not part of a number
      '(?:(?:^|[^\\+])\\+)|' +  // allow + but not ++
      '(?:(?:^|[^\\-])-)'  // allow - but not --

Name: OOOPPS 2010-03-21 8:34

  var CPP_KEYWORDS =   abstract bool break case catch char class const    +
      const_cast continue default delete deprecated dllexport dllimport do    +
      double dynamic_cast else enum explicit extern false float for friend    +
      goto if inline int long mutable naked namespace new noinline noreturn    +
      nothrow novtable operator private property protected public register    +
      reinterpret_cast return selectany short signed sizeof static    +
      static_cast struct switch template this thread throw true try typedef    +
      typeid typename union unsigned using declaration, directive uuid    +
      virtual void volatile while typeof  ;
  var CSHARP_KEYWORDS =   as base by byte checked decimal delegate descending    +
      event finally fixed foreach from group implicit in interface internal    +
      into is lock null object out override orderby params readonly ref sbyte    +
      sealed stackalloc string select uint ulong unchecked unsafe ushort var  ;
  var JAVA_KEYWORDS =   package synchronized boolean implements import throws    +
      instanceof transient extends final strictfp native super  ;
  var JSCRIPT_KEYWORDS =   debugger export function with NaN Infinity  ;
  var PERL_KEYWORDS =   require sub unless until use elsif BEGIN END  ;
  var PYTHON_KEYWORDS =   and assert def del elif except exec global lambda    +
      not or pass print raise yield False True None  ;
  var RUBY_KEYWORDS =   then end begin rescue ensure module when undef next    +
      redo retry alias defined  ;
  var SH_KEYWORDS =   done fi  ;
  var LISP_KEYWORDS =   defun  ;

I hacked this from 4chan last year. Have fun, it is the list of words that appear in either blue (lowercase) or purple (uppercase).
Also this:
    var preceders = [
          !  ,   !=  ,   !==  ,   #  ,   %  ,   %=  ,   &  ,   &&  ,   &&=  ,
          &=  ,   (  ,   *  ,   *=  , /*   +  , */   +=  ,   ,  , /*   -  , */   -=  ,
          ->  , /*  .  ,   ..  ,   ...  , handled below */   /  ,   /=  ,   :  ,   ::  ,   ;  ,
          <  ,   <<  ,   <<=  ,   <=  ,   =  ,   ==  ,   ===  ,   >  ,
          >=  ,   >>  ,   >>=  ,   >>>  ,   >>>=  ,   ?  ,   @  ,   [  ,
          ^  ,   ^=  ,   ^^  ,   ^^=  ,   {  ,   |  ,   |=  ,   ||  ,
          ||=  ,   ~  ,   break  ,   case  ,   continue  ,   delete  ,
          do  ,   else  ,   finally  ,   instanceof  ,
          return  ,   throw  ,   try  ,   typeof 
        ];
    var pattern = '(?:' +
      '(?:(?:^|[^0-9\.])\\.{1,3})|' +  // a dot that's not part of a number
      '(?:(?:^|[^\\+])\\+)|' +  // allow + but not ++
      '(?:(?:^|[^\\-])-)'  // allow - but not --

Name: hmmm.. 2010-03-21 8:35

/test/

Name: Anonymous 2010-03-21 8:35

/Test/

Name: Anonymous 2010-03-21 8:40

abstract bool break case catch char class const const_cast continue default delete deprecated dllexport dllimport do double dynamic_cast else enum explicit extern false float for friend goto if inline int long mutable naked namespace new noinline noreturn nothrow novtable operator private property protected public register reinterpret_cast return selectany short signed sizeof static static_cast struct switch template this thread throw true try typedef typeid typename union unsigned using declaration, directive uuid virtual void volatile while typeof as base by byte checked decimal delegate descending event finally fixed foreach from group implicit in interface internal into is lock null object out override orderby params readonly ref sbyte  sealed stackalloc string select uint ulong unchecked unsafe ushort var package synchronized boolean implements import throws instanceof transient extends final strictfp native super debugger export function with NaN Infinity  require sub unless until use elsif and assert def del elif except exec global lambda not or pass print raise yield False True None

Name: Anonymous 2010-03-21 8:47

abstract Turnkey solution

Name: Anonymous 2010-03-21 9:06

What am I missing?
A rant about PROPER SHIICHAN QUOTES, the vulgarity of imageboards and how edgy and hip you're by not using Facebook/Twitter/Reddit.

Name: Anonymous 2010-03-21 9:12

>>10
That should probably go into a separate introductory guide about world4ch.

Name: Anonymous 2010-03-21 9:22

[m][o][u][s]test[\s][\u][\o][sup]test[sup]test[\sup][\sup][\m]

>expert[o]
>quote[o]
>test[o]
[\o]lol[\o][\o]

Name: Anonymous 2010-03-21 9:44

Name: Anonymous 2010-03-21 9:50

WORLD4CH'S POST FORMATTING GUIDE
[b] bold example
[u] underline example
[i] italic example
[o] overline example
[s] strikethrough example
[m] courier text example
[code] preserves syntax for code and colors text
For green text in code put a word in quotes "example"
for red put a # before the word #example
[spoiler] for spoilers example
[sup] makes text progressively smaller higher on the line example example
[sub] makes text progressively smaller lower on the line example example
[sup] and [sub] can be used for nesting too
[aa] For SJIS art. example
For ASCII art use [m] tag.
To quote put a space after the '>' below, everything on that line will be quoted. The > must begin a new line for this to work.
>example
Become:
example
To multiquote put a space after the '>'s below"
>first line[o]
other
lines
then
>[/o]
It becomes;
first line
then
other
lines
then

To do expert quotes add a space after the '>'s below:
>I'm[o]
>a[o]
>expert[o]
>quote[o]
[/o]lol[/o]lol[/o]lol[/o]
It becomes:
I'm
a
expert
quote
lol
lol
lol

[#] Ignores all BBcode tags inside it
[rem] hides all text inside it
[br] gives you a line break. Don't close this tag
[u]Note:[/u]To cite multible posts use >>4,6,21 to cite only those three. Use >>4-21 to cite all posts from 4 to 21. You can also combine them: >>4-21,45,47-51

Name: Anonymous 2010-03-21 10:05

You are forgetting the part where you realize you are contributing to the downfall of world4ch by encouraging imageboard faggots to post here.

Name: Anonymous 2010-03-21 10:32

>>15
Not really. Unless world4ch boards keep being linked to on the imageboards. They find their way here one way or another anyway.

Name: Anonymous 2010-03-21 12:18

>>16
I don't know if this is still the case, but some boards like /a/ did have links to appropriate text boards, in this case it would be /anime/

Name: Anonymous 2010-03-21 12:44

>>16
Unless you blatantly advertise /prog/ on /b/, people just won't care.
The textboards linked from imageboards are unpopular either due spam and like 2-3 people posting.

Name: Anonymous 2010-03-21 12:44

>>17
Ever since the introduction of the new imageboards, /new/ links to /newnew/ and /newpol/, /sci/ of course links to its world4ch counterpart, and /lit/ of course links to /book/. /int/ links to /lang/. Ever since these new imageboards have been established, I've noticed a slight influx in posting to world4ch.

Name: Anonymous 2010-03-21 12:47

>>18
Worst boards on here for spam is /games/, /tech/ and /comp/ in that order. All the rest either have been not as spammed, or have more volume of posts over time essentially bumping past the spam.

Name: Anonymous 2010-03-21 13:18

>>18
2-3 people posting.
why? ;_;

i wish we had more to say to each other.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List