Good god, markdown is finicky

This commit is contained in:
Kiooeht 2011-04-17 02:32:21 -07:00
parent f985245a12
commit 315f8d4b40

View file

@ -79,8 +79,8 @@ list later on in this readme.
FA% FA%
--- ---
Q: Norton says it has a virus and then deletes it! <b>Q:</b> Norton says it has a virus and then deletes it!<br>
A: Read this helpful Norton FAQ: <b>A:</b> Read this helpful Norton FAQ:
Alright, here's a guide to by-passing Norton: Alright, here's a guide to by-passing Norton:
@ -108,56 +108,56 @@ Alright, here's a guide to by-passing Norton:
(This guide brought to you by the slightly combined efforts of empireomega and Xanaomin) (This guide brought to you by the slightly combined efforts of empireomega and Xanaomin)
------- ------------------------------------------------------------------------------------
Q: I can't connect because my school/university/network/stolen wifi is blocking my connection! OR I can't seem to connect to the server at all and I'm not running any firewalls! <b>Q:</b> I can't connect because my school/university/network/stolen wifi is blocking my connection! OR I can't seem to connect to the server at all and I'm not running any firewalls!<br>
A: Edit your pesterchum.js file. Open it up in notepad or something, and then edit the beginning so it looks like this: <b>A:</b> Edit your pesterchum.js file. Open it up in notepad or something, and then edit the beginning so it looks like this:
{"port": "1413", .... {"port": "1413", ....
where the .... is the rest of the gobbledygook there. where the .... is the rest of the gobbledygook there.
------- ------------------------------------------------------------------------------------
Q: The mood buttons on Pesterchum 6.0 don't match up to what it sets your mood to! What gives? <b>Q:</b> The mood buttons on Pesterchum 6.0 don't match up to what it sets your mood to! What gives?<br>
A: The mood names are just there to look canon. It is intentional. <b>A:</b> The mood names are just there to look canon. It is intentional.
------- ------------------------------------------------------------------------------------
Q: I'm appearing as offline to 2.5 users/other users appear the wrong <b>Q:</b> I'm appearing as offline to 2.5 users/other users appear the wrong
mood? What's happeninggggg mood? What's happeninggggg<br>
A: The 2.5 people decided to change the mood protocol. When I made <b>A:</b> The 2.5 people decided to change the mood protocol. When I made
this program, I decided to go with Tinychat's original protocol (and this program, I decided to go with Tinychat's original protocol (and
extend it). So some moods will appear wrong between 2.5 extend it). So some moods will appear wrong between 2.5
users. (*COUGH*tell them to switch to 3.14*COUGH*) users. (*COUGH*tell them to switch to 3.14*COUGH*)
------- ------------------------------------------------------------------------------------
Q: Pesterchum 2.5 users don't get my /me messages correctly! <b>Q:</b> Pesterchum 2.5 users don't get my /me messages correctly!<br>
A: That's because they implemented the /me command differently. <b>A:</b> That's because they implemented the /me command differently.
------- ------------------------------------------------------------------------------------
Q: Can we resize the main window? <b>Q:</b> Can we resize the main window?<br>
A: No. This is done so we can offer more flexible UI creation. It's a <b>A:</b> No. This is done so we can offer more flexible UI creation. It's a
lot easier to make themes that look canon this way. lot easier to make themes that look canon this way.
------- ------------------------------------------------------------------------------------
Q: Can we have different chum rolls for different users? <b>Q:</b> Can we have different chum rolls for different users?<br>
A: No. Instead what we're going to do in a later update is make chum <b>A:</b> No. Instead what we're going to do in a later update is make chum
groups to organize people in your list. groups to organize people in your list.
------- ------------------------------------------------------------------------------------
Q: Can we delete profiles? <b>Q:</b> Can we delete profiles?<br>
A: Yes. Go to the profiles directory and delete the corresponding <b>A:</b> Yes. Go to the profiles directory and delete the corresponding
username file. username file.
------- ------------------------------------------------------------------------------------
Q: You should make it so you can ban specific time frames in memos. <b>Q:</b> You should make it so you can ban specific time frames in memos.<br>
A: This was too complicated to implement, and I don't have the UI <b>A:</b> This was too complicated to implement, and I don't have the UI
quite figured out. This will probably go in a future update. quite figured out. This will probably go in a future update.
@ -550,16 +550,18 @@ as well.
can combine them, too: [a-z0-9] will match any digit and lowercase letter. can combine them, too: [a-z0-9] will match any digit and lowercase letter.
There are also different shortcuts for character types: There are also different shortcuts for character types:
* \d matches any digit; same as [0-9] <pre>
* \D matches any non-digit; same as [^0-9] \d matches any digit; same as [0-9]
* \s matches any spaces \D matches any non-digit; same as [^0-9]
* \S matches any non-space \s matches any spaces
* \w matches any alphanumeric character; same as [a-zA-Z0-9_] \S matches any non-space
* \W matches any non-alphanumeric character; same as [^a-zA-Z0-9_] \w matches any alphanumeric character; same as [a-zA-Z0-9_]
\W matches any non-alphanumeric character; same as [^a-zA-Z0-9_]
</pre>
You can include this inside brackets, too. You can include this inside brackets, too.
There's also a special character, \b. What \b does is make sure that There's also a special character, \\b. What \\b does is make sure that
you are at the beginning or end of a word. you are at the beginning or end of a word.
* So with that knowledge, let's try Kanaya: * So with that knowledge, let's try Kanaya:
<pre> <pre>
@ -570,12 +572,12 @@ as well.
</pre> </pre>
Another feature of regular expressions is the ability to match Another feature of regular expressions is the ability to match
*repeated* characters. There are three repeat characters: the "*", the *repeated* characters. There are three repeat characters: the "\*", the
"+", "?", and "{m,n}". They work by playing them after the character, "+", "?", and "{m,n}". They work by playing them after the character,
or character type you want to match. (So, you could say "\s+" or ".*") or character type you want to match. (So, you could say "\s+" or ".*")
The "*" character matches ZERO or more of that character. So, for The "\*" character matches ZERO or more of that character. So, for
example, "f*" would match "f" and "ff" -- and any other character! example, "f\*" would match "f" and "ff" -- and any other character!
That's right, every character counts as matching it zero times. Yeah, That's right, every character counts as matching it zero times. Yeah,
it's weird. I suggest you use... it's weird. I suggest you use...