fix markdown in descriptions
[mdref/mdref] / mdref / RefEntry.php
index 2ad3d278b617308af441f95069477df2337d7363..6c54674cedad30a1b8b545ae596c4ea4dd9f63c6 100644 (file)
@@ -114,7 +114,7 @@ class RefEntry
        function readTitle() {
                $this->openFile();
                fseek($this->file, 1, SEEK_SET);
-               return htmlspecialchars(fgets($this->file));
+               return fgets($this->file);
        }
        
        /**
@@ -126,7 +126,7 @@ class RefEntry
                fseek($this->file, 0, SEEK_SET);
                fgets($this->file);
                fgets($this->file);
-               return htmlspecialchars(fgets($this->file));
+               return fgets($this->file);
        }
        
        /**