Removed stupid Q. and A. formatting that just confused people.

This commit is contained in:
thepurpleblob
2003-08-26 14:57:35 +00:00
parent 095ebcdc6d
commit 0518065ed5
-14
View File
@@ -391,20 +391,6 @@ class Wiki {
$buffer = $buffer . eregi_replace( "^\%","",$line) . "\n";
$this->block_state = STATE_NOTIKI;
}
else
if (eregi("^Q\. ",$line) ) {
// Question - para with a question class
$buffer = $buffer . "<p class=\"question\">\n";
$buffer = $buffer . eregi_replace( "^Q. ","",$line) . "\n";
$this->block_state = STATE_PARAGRAPH;
}
else
if (eregi("^A\. ",$line) ) {
// Answer - para with an answer class
$buffer = $buffer . "<p class=\"answer\">\n";
$buffer = $buffer . eregi_replace( "^A. ","",$line ) . "\n";
$this->block_state = STATE_PARAGRAPH;
}
else {
// ordinary paragraph
$buffer = $buffer . "<p>\n";