summaryrefslogtreecommitdiff
path: root/Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl')
-rw-r--r--Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl20
1 files changed, 0 insertions, 20 deletions
diff --git a/Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl b/Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl
deleted file mode 100644
index 6bdbadcf127..00000000000
--- a/Build/source/utils/chktex/chktex-1.6.6/MakeHTML.pl
+++ /dev/null
@@ -1,20 +0,0 @@
-# Remove parts of code enclosed in %latex/%endlatex tags
-
-$latexonly = 0;
-
-while(<>)
-{
- $latexonly = 1 if /^%latex/i;
- $latexonly = 0 if /^%endlatex/i;
-
-
- if($latexonly) {
- if(/^%!(.*)/)
- {
- print $1;
- }
- }
- else {
- print;
- }
-}