cmark_syntax/
languages.rs

1// This file is part of cmark-syntax. This program comes with ABSOLUTELY NO WARRANTY;
2// This is free software, and you are welcome to redistribute it under the
3// conditions of the GNU General Public License version 3.0.
4//
5// You should have received a copy of the GNU General Public License
6// along with cmark-syntax.  If not, see <http://www.gnu.org/licenses/>
7mod javascript;
8mod rust;
9mod sh;
10mod toml;
11
12pub use javascript::JavaScript;
13pub use rust::Rust;
14pub use sh::Sh;
15pub use toml::Toml;