1 pub use liquid_core::Value::Nil;
2 
3 #[allow(dead_code)]
date(y: i32, m: u32, d: u32) -> liquid_core::Value4 pub fn date(y: i32, m: u32, d: u32) -> liquid_core::Value {
5     use liquid_core::model::Date;
6     use liquid_core::model::Value;
7     Value::scalar(Date::from_ymd(y, m, d))
8 }
9 
10 #[allow(dead_code)]
with_time(_time: &str) -> liquid_core::Value11 pub fn with_time(_time: &str) -> liquid_core::Value {
12     Nil
13 }
14 
15 #[allow(unused_macros)]
16 #[macro_export]
17 macro_rules! v {
18     ($($value:tt)+) => {
19         ::liquid_core::value!($($value)+)
20     };
21 }
22 
23 #[allow(unused_macros)]
24 #[macro_export]
25 macro_rules! o {
26     ($($value:tt)+) => {
27         ::liquid_core::object!($($value)+)
28     };
29 }
30 
31 #[allow(unused_macros)]
32 #[macro_export]
33 macro_rules! a {
34     ($($value:tt)+) => {
35         ::liquid_core::array!($($value)+)
36     };
37 }
38