madfun 0.1.2

Autogenerate Atlassian Document Format (ADF) from Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
//! # `madfun`
//!
//! **WARNING**: This crate is incomplete, and does not include full support for
//! all Markdown blocks. Known working Markdown primitives:
//!
//! * code
//! * inlinecode
//! * links
//! * paragraphs
//! * text
//!
//! <hr/>
//!
//! Would you like to use `Ma`rkdown to post `A`tlassian `D`ocument `F`ormatted
//! content while still having `fun`? Then this tool's for you!
//!
//! ## How It Works
//!
//! `madfun` works by taking input in
//! [Markdown](https://www.markdownguide.org/), either as text or a parsed
//! abstract syntax tree
//! ([AST](https://en.wikipedia.org/wiki/Abstract_syntax_tree)) and converting
//! it to an `adf:Node` tree that conforms to Atlassian's
//! [ADF](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/).
//! This type implements serde's `Serialize` and `Deserialize` traits, so it's
//! easy to convert to a JSON representation via `serde_json`.
//!
//! Once you've got that, it should be simple (lol) to use any HTTP or Atlassian
//! client to send it wherever it's going.
//!
//! ## Usage
//!
//! The core of `madfun` is the [`ToAdf`] trait; this exposes methods for
//! converting text or pre-parsed Markdown (via the `markdown` crate) into a
//! `serde_json::Value` that can then be serialized as you desire.
//!
//! If you have Markdown text:
//!
//! ```
//! let adf = madfun::from_str(
//!     "Here is my Markdown content",
//! ).unwrap();
//! ```
//!
//! If you've already got the Markdown parsed into a `markdown::mdast::Node`,
//! then you can use the infallible [`ToAdf::to_adf`] method:
//!
//! ```
//! use madfun::ToAdf;
//!
//! let mdast = markdown::to_mdast(
//!     "Here is my Markdown content",
//!     &markdown::ParseOptions::default(),
//! ).unwrap();
//!
//! let adf = mdast.to_adf();
//! ```
//!
//! ## Limitations
//!
//! `madfun` is currently unidirectional; it takes Markdown and renders ADF
//! JSON. Unfortunately, it can't (yet?) take ADF as returned from the Atlassian
//! APIs and convert it back to Markdown, though in theory this should be doable
//! (if not actually isomorphic).
//!
//! ## Roadmap
//!
//! * Clean up/improve the crate interface
//!     * Add to/from reader/writer functions
//! * Better error messages
//! * Complete full translation of Markdown -> ADF
//! * Finish isomorphic (where possible) Markdown <-> ADF capabilities
//! * _Maybe_ add support for pulldown-cmark as a Markdown parser?
//!
//! ## LICENSE
//!
//! `madfun` is dual-licensed as MIT or Apache-2.0. Have fun.

pub mod adf;

use adf::{
    Mark, Node,
    mark::LinkAttrs,
    node::{CodeBlockAttrs, HeadingAttrs},
};
use markdown::{
    mdast::{self, Code, InlineCode, Link, Paragraph, Root, Text},
    message::Message,
};
use std::fmt::Display;

pub use markdown::ParseOptions;

#[derive(Debug)]
pub enum Error {
    Markdown(Message),
    InvalidNode,
    Fmt(std::fmt::Error),
}

impl Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Error::Markdown(message) => write!(f, "{message}"),
            Error::InvalidNode => write!(f, "invalid node"),
            Error::Fmt(error) => write!(f, "fmt error: {error}"),
        }
    }
}

impl std::error::Error for Error {}

impl From<Message> for Error {
    fn from(value: Message) -> Self {
        Self::Markdown(value)
    }
}

impl From<std::fmt::Error> for Error {
    fn from(value: std::fmt::Error) -> Self {
        Self::Fmt(value)
    }
}

/// Generate ADF from Markdown text.
///
/// # Errors
///
/// Returns an error if the Markdown is invalid.
pub fn from_str<T: AsRef<str>>(markdown: T) -> Result<Node, Error> {
    Ok(
        markdown::to_mdast(markdown.as_ref(), &ParseOptions::default())?
            .to_adf(),
    )
}

pub trait ToAdf {
    /// Generate ADF from a pre-parsed `markdown::Node`.
    fn to_adf(&self) -> Node;
}

impl ToAdf for mdast::Node {
    fn to_adf(&self) -> Node {
        to_adf(self)
    }
}

/// # Errors
///
/// Returns an error if any of the ADF nodes are incorrectly used/nested.
pub fn to_markdown(node: &Node) -> Result<String, Error> {
    let buf = String::new();

    Ok(node.to_markdown(buf)?.trim().to_string())
}

#[expect(clippy::too_many_lines)]
fn to_adf(node: &mdast::Node) -> Node {
    match node {
        mdast::Node::Root(Root {
            children,
            ..
        }) => Node::Doc {
            content: children.iter().map(to_adf).collect(),
            version: 1,
        },
        mdast::Node::Blockquote(blockquote) => todo!("blockquote"),
        mdast::Node::Break(_) => todo!(),
        mdast::Node::Code(Code {
            value,
            lang,
            ..
        }) => Node::codeblock()
            .and_attrs(
                lang.as_ref()
                    .map(|l| CodeBlockAttrs::builder().language(l).build()),
            )
            .content_entry(Node::text().text(value).build())
            .build(),
        mdast::Node::Definition(definition) => todo!("definition"),
        mdast::Node::Delete(delete) => todo!("delete"),
        mdast::Node::Emphasis(emphasis) => todo!("emphasis"),
        mdast::Node::FootnoteDefinition(footnote_definition) => {
            todo!("footnote_definition")
        },
        mdast::Node::FootnoteReference(footnote_reference) => {
            todo!("footnote_reference")
        },
        mdast::Node::Heading(mdast::Heading {
            children,
            depth,
            ..
        }) => Node::heading()
            .content(children.into_iter().map(ToAdf::to_adf).collect())
            .attrs(HeadingAttrs::builder().level(*depth).build())
            .build(),
        mdast::Node::Html(html) => todo!("html"),
        mdast::Node::Image(image) => todo!("image"),
        mdast::Node::ImageReference(image_reference) => {
            todo!("image_reference")
        },
        mdast::Node::InlineCode(InlineCode {
            value,
            ..
        }) => Node::Text {
            text: value.to_string(),
            marks: vec![Mark::Code],
        },
        mdast::Node::InlineMath(inline_math) => todo!("inline_math"),
        mdast::Node::Link(Link {
            url,
            children,
            title,
            ..
        }) => {
            let Some(mdast::Node::Text(Text {
                value,
                ..
            })) = children.first()
            else {
                // TODO: Don't panic (grab your towel).
                panic!("missing text on link");
            };

            Node::Text {
                text: value.to_string(),
                marks: vec![Mark::Link {
                    attrs: LinkAttrs::builder()
                        .href(url)
                        .and_title(title.as_ref())
                        .build(),
                }],
            }
        },
        mdast::Node::LinkReference(link_reference) => todo!(),
        mdast::Node::List(list) => todo!(),
        mdast::Node::ListItem(list_item) => todo!(),
        mdast::Node::Math(math) => todo!(),
        mdast::Node::MdxFlowExpression(mdx_flow_expression) => todo!(),
        mdast::Node::MdxJsxFlowElement(mdx_jsx_flow_element) => todo!(),
        mdast::Node::MdxJsxTextElement(mdx_jsx_text_element) => todo!(),
        mdast::Node::MdxTextExpression(mdx_text_expression) => todo!(),
        mdast::Node::MdxjsEsm(mdxjs_esm) => todo!(),
        mdast::Node::Paragraph(Paragraph {
            children,
            ..
        }) => Node::paragraph()
            .content(children.iter().map(to_adf).collect())
            .build(),
        mdast::Node::Strong(strong) => todo!("strong"),
        mdast::Node::Table(table) => todo!(),
        mdast::Node::TableCell(table_cell) => todo!(),
        mdast::Node::TableRow(table_row) => todo!(),
        mdast::Node::Text(Text {
            value,
            ..
        }) => Node::text().text(value).build(),
        mdast::Node::ThematicBreak(thematic_break) => todo!("thematic_break"),
        mdast::Node::Toml(toml) => todo!(),
        mdast::Node::Yaml(yaml) => todo!(),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use markdown::mdast::Node;
    use serde_json::json;

    mod to_adf {
        use super::*;
        use markdown::{ParseOptions, mdast::Root};
        use pretty_assertions::assert_eq;

        #[test]
        fn test_empty_root() {
            assert_eq!(
                serde_json::to_value(
                    Node::Root(Root {
                        children: vec![],
                        position: None,
                    })
                    .to_adf()
                )
                .unwrap(),
                json!({
                    "content": [],
                    "type": "doc",
                    "version": 1,
                }),
            );
        }

        #[test]
        fn test_paragraph() {
            let node = markdown::to_mdast(
                "This is a paragraph.",
                &ParseOptions::default(),
            )
            .unwrap();
            assert_eq!(
                serde_json::to_value(node.to_adf()).unwrap(),
                json!({
                    "content": [{
                        "content": [{
                            "text": "This is a paragraph.",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );

            let node = serde_json::to_value(
                markdown::to_mdast("", &ParseOptions::default())
                    .unwrap()
                    .to_adf(),
            )
            .unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [],
                    "type": "doc",
                    "version": 1,
                }),
                "{:#?}",
                node,
            );
        }

        #[test]
        fn test_multiline_paragraph() {
            let node = serde_json::to_value(
                markdown::to_mdast(
                    "This is a\nmultiline paragraph.",
                    &ParseOptions::default(),
                )
                .unwrap()
                .to_adf(),
            )
            .unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [{
                        "content": [{
                            "text": "This is a\nmultiline paragraph.",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );
        }

        #[test]
        fn test_multi_paragraph() {
            let node = serde_json::to_value(
                markdown::to_mdast(
                    "This is a paragraph.\n\nAnd another one.",
                    &ParseOptions::default(),
                )
                .unwrap()
                .to_adf(),
            )
            .unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [{
                        "content": [{
                            "text": "This is a paragraph.",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    },{
                        "content": [{
                            "text": "And another one.",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );
        }

        #[test]
        fn test_link() {
            let node = serde_json::to_value(
                markdown::to_mdast(
                    "This is a paragraph [with](https://example.com).",
                    &ParseOptions::default(),
                )
                .unwrap()
                .to_adf(),
            )
            .unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [{
                        "content": [{
                            "text": "This is a paragraph ",
                            "type": "text",
                        },{
                            "text": "with",
                            "type": "text",
                            "marks": [{
                                "attrs": {
                                    "href": "https://example.com",
                                },
                                "type": "link",
                            }],
                        },{
                            "text": ".",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );
        }

        #[test]
        fn test_link_with_title() {
            let node = serde_json::to_value(markdown::to_mdast(
                r#"This is a paragraph [with](https://example.com "my title")."#,
                &ParseOptions::default(),
            )
            .unwrap().to_adf()).unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [{
                        "content": [{
                            "text": "This is a paragraph ",
                            "type": "text",
                        },{
                            "text": "with",
                            "type": "text",
                            "marks": [{
                                "attrs": {
                                    "href": "https://example.com",
                                    "title": "my title",
                                },
                                "type": "link",
                            }],
                        },{
                            "text": ".",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );
        }

        #[test]
        fn test_inline_code() {
            let node = serde_json::to_value(
                markdown::to_mdast(
                    "inline `codehighlight` block",
                    &ParseOptions::default(),
                )
                .unwrap()
                .to_adf(),
            )
            .unwrap();
            assert_eq!(
                node,
                json!({
                    "content": [{
                        "content": [{
                            "text": "inline ",
                            "type": "text",
                        },{
                            "type": "text",
                            "text": "codehighlight",
                            "marks": [{
                                "type": "code",
                            }],
                        },{
                            "text": " block",
                            "type": "text",
                        }],
                        "type": "paragraph",
                    }],
                    "type": "doc",
                    "version": 1,
                }),
                "{node:#?}",
            );
        }
    }
}