diff --git a/core/API/Proxy.php b/core/API/Proxy.php
index 9cef9ff8402dc457419905e6f3cd39eff72e93ea..a067022e47536002389a72541c321eb00bc3f57b 100644
--- a/core/API/Proxy.php
+++ b/core/API/Proxy.php
@@ -108,8 +108,6 @@ class Proxy extends Singleton
 
         // replace 'foo' and `bar` and "foobar" with code blocks... much magic
         $doc = preg_replace('/`(.*?)`/', '<code>$1</code>', $doc);
-        $doc = preg_replace('/"(.*?)"/', '<code>$1</code>', $doc);
-        $doc = preg_replace("/'(.*?)'/", '<code>$1</code>', $doc);
         $this->metadataArray[$className]['__documentation'] = $doc;
     }