just 0.4.3

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
use crate::common::*;

#[derive(Copy, Clone, PartialEq, Debug)]
pub enum State<'a> {
  Normal,
  Indented { indentation: &'a str },
  Text,
  Interpolation { interpolation_start: Position },
}