From cbeaceeb5c2d62fa9cb340d89a7c72586841777f Mon Sep 17 00:00:00 2001 From: kirbylife Date: Thu, 21 Nov 2019 14:34:48 -0600 Subject: [PATCH] added new header with the comment way of ASM and MatLab --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b8869cf..2866823 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,7 +25,7 @@ use std::env; use std::vec::Vec; use tera::Context; -const TITLES: [&str; 7] = [ +const TITLES: [&str; 8] = [ "/* {} */", "# {}", "// {}", @@ -33,6 +33,8 @@ const TITLES: [&str; 7] = [ "{# {} #}", "-- {}", "--[[ {} --]]", + "; {}", + "% {}", ]; const MAX_POSTS_PER_PAGE: i64 = 20;