mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 08:38:26 +01:00
Added support for HTML comments.
This commit is contained in:
parent
8dc1fdeee0
commit
0baa250db2
1 changed files with 4 additions and 4 deletions
|
@ -17,11 +17,11 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with gitinspector. If not, see <http://www.gnu.org/licenses/>.
|
# along with gitinspector. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
__comment_begining__ = {"java": "/*", "c": "/*", "cpp": "/*", "h": "/*", "hpp": "/*", "py": "\"\"\"", "glsl": "/*",
|
__comment_begining__ = {"java": "/*", "c": "/*", "cpp": "/*", "h": "/*", "hpp": "/*", "html": "<!--", "py": "\"\"\"",
|
||||||
"rb": "=begin", "js": "/*", "sql": "/*", "xml": "<!--"}
|
"glsl": "/*", "rb": "=begin", "js": "/*", "sql": "/*", "xml": "<!--"}
|
||||||
|
|
||||||
__comment_end__ = {"java": "*/", "c": "*/", "cpp": "*/", "h": "*/", "hpp": "*/", "py": "\"\"\"", "glsl": "*/",
|
__comment_end__ = {"java": "*/", "c": "*/", "cpp": "*/", "h": "*/", "hpp": "*/", "html": "-->", "py": "\"\"\"",
|
||||||
"rb": "=end", "js": "*/", "sql": "*/", "xml": "-->"}
|
"glsl": "*/", "rb": "=end", "js": "*/", "sql": "*/", "xml": "-->"}
|
||||||
|
|
||||||
__comment__ = {"java": "//", "c": "//", "cpp": "//", "h": "//", "hpp": "//", "pl": "#", "py": "#", "glsl": "//",
|
__comment__ = {"java": "//", "c": "//", "cpp": "//", "h": "//", "hpp": "//", "pl": "#", "py": "#", "glsl": "//",
|
||||||
"rb": "#", "js": "//", "sql": "--"}
|
"rb": "#", "js": "//", "sql": "--"}
|
||||||
|
|
Loading…
Reference in a new issue