Implement footnote reference.

This commit is contained in:
Tom Alexander 2023-12-30 16:05:41 -05:00
parent 65ce116998
commit e0c0070a13
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 22 additions and 6 deletions

View File

@ -4,15 +4,16 @@ use serde::Serialize;
use super::ast_node::WasmAstNode;
use super::macros::to_wasm;
use super::to_wasm::ToWasm;
use super::AdditionalProperties;
use crate::compare::ElispFact;
use crate::types::FootnoteReference;
use crate::types::FootnoteReferenceType;
use crate::wasm::to_wasm::ToWasmStandardProperties;
#[derive(Debug, Serialize, Deserialize)]
pub struct WasmFootnoteReference {
#[serde(flatten)]
pub(crate) additional_properties: AdditionalProperties,
pub(crate) label: Option<String>,
#[serde(rename = "type")]
pub(crate) footnote_reference_type: String,
}
to_wasm!(
@ -21,12 +22,27 @@ to_wasm!(
original,
wasm_context,
{ WasmAstNode::FootnoteReference(original) },
{ "TODO".into() },
{ "footnote-reference".into() },
{
let children = original
.definition
.iter()
.map(|child| {
child
.to_wasm(wasm_context.clone())
.map(Into::<WasmAstNode>::into)
})
.collect::<Result<Vec<_>, _>>()?;
Ok((
Vec::new(),
children,
WasmFootnoteReference {
additional_properties: AdditionalProperties::default(),
label: original.label.map(|s| s.to_owned()),
footnote_reference_type: match original.get_type() {
FootnoteReferenceType::Standard => "standard",
FootnoteReferenceType::Inline => "inline",
}
.to_owned(),
},
))
}