1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
extern crate comment_strip;

use comment_strip::{strip_comments, CommentStyle};
use std::string::ToString;



pub mod c {
	use super::*;
	pub fn strip(script: impl ToString) -> Result<String, &'static str> {
		strip_comments(script.to_string(), CommentStyle::C, false)
	}
}

pub mod cpp {
	use super::*;
	pub fn strip(script: impl ToString) -> Result<String, &'static str> {
		strip_comments(script.to_string(), CommentStyle::C, false)
	}
}

pub mod rust {
	use super::*;
	pub fn strip(script: impl ToString) -> Result<String, &'static str> {
		strip_comments(script.to_string(), CommentStyle::C, false)
	}
}


pub mod python {
	use super::*;
	pub fn strip(script: impl ToString) -> Result<String, &'static str> {
                strip_comments(script.to_string(), CommentStyle::Shell, false)
        }
}

pub mod shell {
	use super::*;
        pub fn strip(script: impl ToString) -> Result<String, &'static str> {
                strip_comments(script.to_string(), CommentStyle::Shell, false)
        }
}

pub mod xml {
	use super::*;
        pub fn strip(script: impl ToString) -> Result<String, &'static str> {
                strip_comments(script.to_string(), CommentStyle::XML, false)
        }
}

pub mod html {
	use super::*;
        pub fn strip(script: impl ToString) -> Result<String, &'static str> {
                strip_comments(script.to_string(), CommentStyle::XML, false)
        }
}