Tholp's bespoke website generator

Format

Tholp1 ff0824cb 5bb7ef44

+4 -6
+4 -6
src/main.rs
··· 58 58 let mut ephemeral = false; 59 59 let same_file = file.tokens[file.working_index].origin_file != file.filename_input; 60 60 61 - //if file.tokens[file.working_index].contents.starts_with("!&") 62 - if symbol.starts_with("!&") 63 - { 61 + // Inversely Ephemeral 62 + if symbol.starts_with("!&") { 64 63 prefix_len = 2; 65 64 ephemeral = !same_file; 66 65 } 67 - //else if file.tokens[file.working_index].contents.starts_with("&") 68 - else if symbol.starts_with("&") 69 - { 66 + // Ephemeral 67 + else if symbol.starts_with("&") { 70 68 ephemeral = same_file; 71 69 } 72 70