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

Pages: 1-4041-

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:07

What am I missing? I am determined to make the ultimate guide for world4ch, to combate snobs. I should change the title to World4ch's post formatting guide....
I know I need to figure out how to make headers reverse and how to get words to appear after the post headers.
If there is any non-snob who knows the secret to these feel free to post it. And any other secrets I've missed out.
But I think this covers the basics. Here's a pastebin for easy copy+paste: http://pastebin.com/B0Ysd3iK

Name: Anonymous 2010-03-21 8:10

I'm
an
expert
multiquote
programmer

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.

Name: Anonymous 2010-03-21 13:27

>>21
I'll start.
...

asl?

Name: Anonymous 2010-03-21 13:37

>>22
63/m/MIT Institute of Technology

Name: Anonymous 2010-03-21 13:47

>>23
sensei sussman? is that you?

Name: Anonymous 2010-03-21 14:00

>>23
MIT Institute of Technology
( ≖‿≖)

Name: Anonymous 2010-03-21 14:06

>>23
Dad?

Name: 23 2010-03-21 14:11

>>26
Anonymous ?!?!!?!?

Name: Anonymous 2010-03-21 14:58

>>27
23?!!

Name: Anonymous 2010-03-21 15:37

>>2
I saved this as "bbcode.txt" and mailed it to all my friends.

Name: Anonymous 2010-03-21 15:42

>>29
but that's no-one!

Name: Anonymous 2010-03-21 16:32


>I'm
>a
>expert
>quote
lol
lol
lol

Name: Anonymous 2010-03-21 16:32

testtesttesttest

>tost
tost
tost
>

Name: Anonymous 2010-03-21 16:46

>>30
Faggot hyphenation detected

Name: Anonymous 2010-03-21 16:52

>>33
fuck off, ``faggot''.

Name: Anonymous 2010-03-21 17:14

>>1
To multiquote put a space after the '>'s below"
No, use [br] instead of using a bug.

Name: Anonymous 2010-03-21 17:23

>>4
I hacked this from 4chan last year.
http://dis.4chan.org/script/prettify.js

Name: Anonymous 2010-03-21 17:34

Do I need the /b

Test

Name: Anonymous 2010-03-21 17:42

does this really work? was it that easy?

Name: Anonymous 2010-03-21 21:33

>>35
Don't be a lamefag.

Name: Anonymous 2010-03-21 21:35

>>36
If you were in front of me right now I'd break your fucking nose. I don't care if you are a man, woman or fucking single celled amoeba. If all you can do is call people out, I suggest you fuck off and die.

Name: Anonymous 2010-03-21 21:42

>>40-san forgot to take his medication.

Name: Anonymous 2010-03-21 22:07

Is anyone else feeling the rage here? I'm feeling it and frankly, it's awesome.

Name: RudolphHitler 2010-03-21 23:02

>>42  i want to stab your eyes out and shove them down my involentary shitting grandma's ass

Name: Anonymous 2010-03-21 23:19

>>42

I'm not mad at >>36 for whatever that script does, but I am mad at Apache for being retarded. Can I join?

Name: Anonymous 2010-03-22 0:26

>>44
Sure, whatever floats your anus.

Name: Anonymous 2010-03-22 0:59

>>45
Could you possibly be any more puerile?

Name: Anonymous 2010-03-22 1:41

puerile MY ANUS

Name: Anonymous 2010-03-22 1:48

xmk

Name: Anonymous 2010-03-26 3:13

ANUS

Name: Anonymous 2010-03-26 7:25

try this
#/LOUNGE/'S POST FORMATTING GUIDE
[b] bold            example
[u] underline        example
[i] italic        example
[o] overline        example
[s] strikethrough    example
[m] courier text        example
[spoiler] for spoilers example

[code] preserves syntax for code and colors text.
    For green text in code put a word in quotes.    "example"
    For red text in code put a # before the word.    #example
[sup] makes text progressively smaller higher on the line. exampleexample
[sub] makes text progressively smaller lower on the line. exampleexample
    [sup] and [sub] can be used for nesting too.

[aa] For SJIS art.    example
    For ASCII art use the [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 "> " at the beginning of the line and end the line with [o]. Repeat for however many lines there are and then on another new line close the [o] tags.
example
example
example

[#] 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-26 8:37









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Name: Anonymous 2010-03-26 8:38










































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































.Test.

Name: Anonymous 2010-04-04 8:00

MISS MY ARSEHOLE

Name: Anonymous 2010-04-04 11:04

testy
[b]testy

Name: Anonymous 2010-04-04 11:06

[b]am I an programmer yet?[/b]

Name: Anonymous 2010-04-04 11:15

an programmer
an programmer
"green"
#red

testy
testy
testy

testy
testy
testy

Name: Anonymous 2010-04-04 11:18

MJ and Aires die while trying to save the crocodile hunter from a stingray

testy

> testy
Testy

Name: Anonymous 2010-04-04 12:02

>test
>test
>test
>test
test
test
test


test
tes

Name: Anonymous 2010-04-04 16:27

[o]Testes[/u]

Name: Anonymous 2010-04-04 16:44

[anus] anus example

Name: Anonymous 2010-04-04 20:02

testicles

Name: Anonymous 2010-04-04 20:09

sagesagesagesagesage

Name: Anonymous 2010-04-04 20:12

sagesagesagesagesage

Name: Anonymous 2010-04-05 13:38

…………………...„„-~^^~„-„„_
………………„-^*'' : : „'' : : : : *-„
…………..„-* : : :„„--/ : : : : : : : '\
…………./ : : „-* . .| : : : : : : : : '|
……….../ : „-* . . . | : : : : : : : : |
………...\„-* . . . . .| : : : : : : : :'|
……….../ . . . . . . '| : : : : : : : :|
……..../ . . . . . . . .'\ : : : : : : : |
……../ . . . . . . . . . .\ : : : : : : :|
……./ . . . . . . . . . . . '\ : : : : : /
….../ . . . . . . . . . . . . . *-„„„„-*'
….'/ . . . . . . . . . . . . . . '|
…/ . . . . . . . ./ . . . . . . .|
../ . . . . . . . .'/ . . . . . . .'|
./ . . . . . . . . / . . . . . . .'|
'/ . . . . . . . . . . . . . . . .'|
'| . . . . . \ . . . . . . . . . .|
'| . . . . . . \„_^- „ . . . . .'|
'| . . . . . . . . .'\ .\ ./ '/ . |
| .\ . . . . . . . . . \ .'' / . '|
| . . . . . . . . . . / .'/ . . .|
| . . . . . . .| . . / ./ ./ . .|

Name: Anonymous 2010-12-17 1:40

FOLLOW THE NEW GNAA TWITTER AT http://twitter.com/Gary_Niger

Name: Anonymous 2013-01-19 23:52

/prog/ will be spammed continuously until further notice. we apologize for any inconvenience this may cause.

Name: Anonymous 2013-08-07 13:56

test

Name: Anonymous 2013-08-07 13:58

test

Name: Anonymous 2013-08-07 14:02

#testred "testgreen" test
>I'm
>a
>expert
>quote
lol
lol
lol

>>72

Name: Anonymous 2013-08-07 14:03

>test >>>/prog/

Name: Anonymous 2013-08-07 14:04

test2 >>> /prog/

Name: Anonymous 2013-08-07 14:05

test3 >>>/prog/

Name: Anonymous 2013-08-07 14:09

>>>/x/1208196

test1test2test3test4

Name: Anonymous 2013-08-14 15:59

*grabs dick*

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