From 0518065ed564dc1671e725841b4ccb59519458cf Mon Sep 17 00:00:00 2001 From: thepurpleblob Date: Tue, 26 Aug 2003 14:57:35 +0000 Subject: [PATCH] Removed stupid Q. and A. formatting that just confused people. --- lib/wiki.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lib/wiki.php b/lib/wiki.php index c628388038..33b23e97cb 100644 --- a/lib/wiki.php +++ b/lib/wiki.php @@ -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 . "

\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 . "

\n"; - $buffer = $buffer . eregi_replace( "^A. ","",$line ) . "\n"; - $this->block_state = STATE_PARAGRAPH; - } else { // ordinary paragraph $buffer = $buffer . "

\n"; -- 2.39.5