2023-12-21 14:56:58 -05:00
|
|
|
use organic::types::StandardProperties;
|
|
|
|
|
2023-10-31 19:57:04 -04:00
|
|
|
use super::macros::intermediate;
|
2023-10-29 22:31:29 -04:00
|
|
|
|
2023-10-29 17:29:16 -04:00
|
|
|
use crate::error::CustomError;
|
2023-10-27 17:48:19 -04:00
|
|
|
|
2023-10-31 19:57:04 -04:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub(crate) struct ICode {
|
|
|
|
pub(crate) contents: String,
|
2023-12-21 14:56:58 -05:00
|
|
|
pub(crate) post_blank: organic::types::PostBlank,
|
2023-10-31 19:57:04 -04:00
|
|
|
}
|
|
|
|
|
2023-12-19 17:09:11 -05:00
|
|
|
intermediate!(
|
|
|
|
ICode,
|
|
|
|
&'orig organic::types::Code<'parse>,
|
|
|
|
original,
|
2023-12-21 13:53:56 -05:00
|
|
|
_intermediate_context,
|
2023-12-19 17:09:11 -05:00
|
|
|
{
|
|
|
|
Ok(ICode {
|
|
|
|
// TODO: Should this coalesce whitespace like PlainText?
|
|
|
|
contents: original.contents.to_owned(),
|
2023-12-21 14:56:58 -05:00
|
|
|
post_blank: original.get_post_blank(),
|
2023-12-19 17:09:11 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
);
|