Removing lexical scanner recognition of "## Author:" comments.

This functionality is better done manually by the script writer
embedding reST into the script summary section (##! comments).
This allows flexibility in choosing between different methods
to convey the same information (e.g. ":Author: <author>" or
the ".. codeauthor:: <author>" directive that Sphinx
configurations can recognize).
This commit is contained in:
Jon Siwek 2011-03-24 09:51:47 -05:00
parent 8b79971e21
commit c2f0332b5f
3 changed files with 0 additions and 20 deletions

View file

@ -112,9 +112,6 @@ void BroDoc::WriteDocFile() const
WriteSectionHeading("Summary", '-');
WriteStringList("%s\n", "%s\n\n", summary);
WriteToDoc(":Author(s): ");
WriteStringList("%s, ", "%s\n", authors);
WriteToDoc(":Imports: ");
WriteStringList(":doc:`%s`, ", ":doc:`%s`\n", imports);