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
//! GFM text formatting extensions
//!
//! This module provides utilities for GitHub Flavored Markdown
//! text formatting extensions such as strikethrough.
use crateNode;
/// Creates a strikethrough node
///
/// # Arguments
/// * `content` - The content to be struck through
///
/// # Returns
/// A strikethrough node containing the provided content
/// Creates a strikethrough node with plain text content
///
/// # Arguments
/// * `text` - The text to be struck through
///
/// # Returns
/// A strikethrough node containing the text
/// Creates a combined formatted node with strikethrough and emphasis
///
/// # Arguments
/// * `text` - The text to format
///
/// # Returns
/// A node with both strikethrough and emphasis formatting
/// Creates a combined formatted node with strikethrough and strong emphasis
///
/// # Arguments
/// * `text` - The text to format
///
/// # Returns
/// A node with both strikethrough and strong emphasis formatting