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 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
//! A parser for [`words.hk`] (粵典)
//!
//! Parses all entries marked with OK and store the results as a list of entries.
//! This parser does not use any regular expressions, backtracking or other inefficient
//! parsing techniques. It is powered by a library called [`lip`] that provides
//! flexible parser combinators and supports friendly error messages.
//!
//! A note on doc format: we generally put examples after a colon ':'.
//!
//! [`words.hk`]: https://words.hk
//! [`lip`]: https://github.com/AlienKevin/lip
//!
use super::dict::*;
use super::jyutping::*;
use super::unicode;
use lip::ParseResult;
use lip::*;
use std::collections::HashMap;
use std::convert::identity;
use std::error::Error;
use std::io;
/// Parse the whole words.hk CSV database into a [Dict]
pub fn parse_dict<R: io::Read>(input: R) -> Result<Dict, Box<dyn Error>> {
// Build the CSV reader and iterate over each record.
let mut rdr = csv::Reader::from_reader(input);
let mut dict: Dict = HashMap::new();
for result in rdr.records() {
let entry = result?;
if &entry[4] == "OK" {
let id: usize = entry[0].parse().unwrap();
let head = &entry[1];
let content = &entry[2];
let published = &entry[5] == "已公開";
// entry[3] is always an empty string
let head_parse_result = sequence(
"",
succeed!(|word, prs| Variant { word, prs })
.keep(take_chomped(chomp_while1c(&(|c: &char| c != &':'), "word")))
.keep(
sequence(
":",
BoxedParser::new(
take_chomped(chomp_while1c(
&(|c: &char| c != &':' && c != &','),
"jyutping",
))
.map(|pr_str| parse_pr(&pr_str)),
),
":",
space0(),
"",
Trailing::Forbidden,
)
.map(|prs: Vec<LaxJyutPing>| LaxJyutPings(prs)),
),
",",
space0(),
"",
Trailing::Forbidden,
)
.run(head, ());
let entry: Option<Entry> = match head_parse_result {
ParseResult::Ok {
output: head_result,
..
} => match parse_content(id, Variants(head_result), published).run(content, ()) {
ParseResult::Ok {
output: content_result,
..
} => content_result,
ParseResult::Err { message, .. } => {
// println!("Error in #{}: {:?}", id, message);
None
}
},
ParseResult::Err { message, .. } => {
// println!("Error in #{}: {:?}", id, message);
None
}
};
match entry {
Some(e) => {
// println!("{:?}", e);
dict.insert(id, e);
}
None => {}
};
}
}
Ok(dict)
}
/// Parse tags on a word like pos, label, and sim
///
/// For example, here's the label tags of the word 佛系:
///
/// ```
/// # use wordshk_tools::parse::{parse_tags};
/// # let source = indoc::indoc! {"
/// (label:外來語)(label:潮語)
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_tags("label"), source,
/// vec!["外來語".into(), "潮語".into()]
/// # );
/// ```
///
pub fn parse_tags<'a>(name: &'static str) -> lip::BoxedParser<'a, Vec<String>, ()> {
return zero_or_more(
succeed!(|tag| tag)
.skip(token("("))
.skip(token(name))
.skip(token(":"))
.keep(take_chomped(chomp_while1c(&(|c: &char| c != &')'), name)))
.skip(token(")")),
);
}
/// Parse a newline character
///
/// Supports both Windows "\r\n" and Unix "\n"
fn parse_br<'a>() -> lip::BoxedParser<'a, (), ()> {
chomp_if(|c| c == "\r\n" || c == "\n", "a newline")
}
/// Parse a [Line]
///
/// For example, here's an English line:
///
/// ```
/// # use wordshk_tools::dict::{SegmentType::*};
/// # use wordshk_tools::parse::{parse_line};
/// # let source = indoc::indoc! {"
/// My headphone cord was knotted.
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_line("eng"), source,
/// vec![(Text, "My headphone cord was knotted.".into())]
/// # );
/// ```
pub fn parse_line<'a>(name: &'static str) -> lip::BoxedParser<'a, Line, ()> {
succeed!(remove_extra_spaces_around_link).keep(one_or_more(succeed!(|seg| seg).keep(one_of!(
succeed!(|string| (SegmentType::Link, string))
.skip(token("#"))
.keep(take_chomped(chomp_while1c(
&(|c: &char| !unicode::is_punc(*c) && !c.is_whitespace()),
name
))),
succeed!(|string| (SegmentType::Text, string)).keep(take_chomped(chomp_while1c(
&(|c: &char| *c != '#' && *c != '\n' && *c != '\r'),
name
)))
))))
}
fn remove_extra_spaces_around_link(segs: Vec<Segment>) -> Vec<Segment> {
let mut i = 0;
let mut output_segs = segs.clone();
output_segs.iter_mut().for_each(|seg| {
// Remove the whitespace before a link if the whitespace
// is preceeded by a CJK character or another whitespace (double whitespace)
let mut seg_chars = seg.1.chars();
if i + 1 < segs.len()
&& segs[i + 1].0 == SegmentType::Link
&& seg_chars
.next_back()
.map(char::is_whitespace)
.unwrap_or(false)
&& seg_chars
.next_back()
.map(|c| unicode::is_cjk(c) || char::is_whitespace(c))
.unwrap_or(false)
{
seg.1 = unicode::remove_last_char(&seg.1);
}
// Remove the whitespace after a link if the whitespace
// is followed by a CJK character or another whitespace (double whitespace)
seg_chars = seg.1.chars();
if i >= 1
&& segs[i - 1].0 == SegmentType::Link
&& seg_chars.next().map(char::is_whitespace).unwrap_or(false)
&& seg_chars
.next()
.map(|c| unicode::is_cjk(c) || char::is_whitespace(c))
.unwrap_or(false)
{
seg.1 = unicode::remove_first_char(&seg.1);
}
// Remove trailing whitespace from the last seg
if i == segs.len() - 1
&& seg
.1
.chars()
.next_back()
.map(char::is_whitespace)
.unwrap_or(false)
{
seg.1 = unicode::remove_last_char(&seg.1);
}
i += 1;
});
// Filter out empty segs resulted from whitespace trimming above
output_segs
.into_iter()
.filter(|seg| !seg.1.is_empty())
.collect()
}
/// Parse a [Line] tagged in front by its name/category
///
/// For example, here's an English line:
///
/// ```
/// # use wordshk_tools::dict::{SegmentType::*};
/// # use wordshk_tools::parse::{parse_named_line};
/// # let source = indoc::indoc! {"
/// eng:My headphone cord was knotted.
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_named_line("eng"), source,
/// vec![(Text, "My headphone cord was knotted.".into())]
/// # );
/// ```
///
pub fn parse_named_line<'a>(name: &'static str) -> lip::BoxedParser<'a, Line, ()> {
succeed!(|clause| clause)
.skip(token(name))
.skip(token(":"))
.keep(parse_line(name))
}
/// Parse a [Clause] (can be single or multiline)
///
/// For example, here's a Cantonese clause:
///
/// ```
/// # use wordshk_tools::dict::{SegmentType::*};
/// # use wordshk_tools::parse::{parse_clause};
/// # let source = indoc::indoc! {"
/// 一行白鷺上青天
///
/// 兩個黃鸝鳴翠柳
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_clause("yue"), source,
/// vec![vec![(Text, "一行白鷺上青天".into())], vec![(Text, "".into())], vec![(Text, "兩個黃鸝鳴翠柳".into())]]
/// # );
/// ```
///
pub fn parse_clause<'a>(expecting: &'static str) -> lip::BoxedParser<'a, Clause, ()> {
succeed!(|first_line: Line, lines: Clause| {
let mut all_lines = vec![first_line];
all_lines.extend(lines);
all_lines
})
.keep(parse_line(expecting))
.keep(zero_or_more_until(
succeed!(identity).skip(parse_br()).keep(one_of!(
// non-empty line
succeed!(identity).keep(parse_line(expecting)),
// empty line
succeed!(|_| vec!((SegmentType::Text, "".to_string()))).keep(token(""))
)),
succeed!(|_| ()).skip(parse_br()).keep(one_of!(
succeed!(|_| ()).keep(token("<eg>")),
succeed!(|_| ()).keep(token("----")),
succeed!(|_| ())
.keep(chomp_ifc(|c| *c != '\r' && *c != '\n', "any char"))
.skip(chomp_ifc(|c| *c != '\r' && *c != '\n', "any char"))
.skip(chomp_ifc(|c| *c != '\r' && *c != '\n', "any char"))
.skip(chomp_ifc(|c| *c == ':', "colon `:`"))
)),
))
.skip(optional((), parse_br()))
}
/// Parse a named [Clause] (can be single or multiline)
///
/// For example, here's a named Cantonese clause:
///
/// ```
/// # use wordshk_tools::dict::{SegmentType::*};
/// # use wordshk_tools::parse::{parse_named_clause};
/// # let source = indoc::indoc! {"
/// yue:一行白鷺上青天
///
/// 兩個黃鸝鳴翠柳
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_named_clause("yue"), source,
/// vec![vec![(Text, "一行白鷺上青天".into())], vec![(Text, "".into())], vec![(Text, "兩個黃鸝鳴翠柳".into())]]
/// # );
/// ```
///
pub fn parse_named_clause<'a>(name: &'static str) -> lip::BoxedParser<'a, Clause, ()> {
succeed!(identity)
.skip(token(name))
.skip(token(":"))
.keep(parse_clause(name))
}
/// Parse a clause in an alternative language
///
/// For example, here's a Japanese clause:
///
/// ```
/// # use wordshk_tools::dict::{AltLang, SegmentType::*};
/// # use wordshk_tools::parse::{parse_alt_clause};
/// # let source = indoc::indoc! {"
/// jpn:年画;ねんが
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_alt_clause(), source,
/// (AltLang::Jpn, vec![vec![(Text, "年画;ねんが".into())]])
/// # );
/// ```
///
pub fn parse_alt_clause<'a>() -> lip::BoxedParser<'a, AltClause, ()> {
(succeed!(|alt_lang: Located<String>, clause: Clause| (alt_lang, clause))
.keep(located(take_chomped(chomp_while1c(
|c: &char| *c != ':',
"alternative languages",
))))
.skip(token(":"))
.keep(parse_clause("alternative language clause")))
.and_then(|(alt_lang, clause)| match &alt_lang.value[..] {
"jpn" => succeed!(|_| (AltLang::Jpn, clause)).keep(token("")),
"kor" => succeed!(|_| (AltLang::Kor, clause)).keep(token("")),
"por" => succeed!(|_| (AltLang::Por, clause)).keep(token("")),
"vie" => succeed!(|_| (AltLang::Vie, clause)).keep(token("")),
"lat" => succeed!(|_| (AltLang::Lat, clause)).keep(token("")),
"fra" => succeed!(|_| (AltLang::Fra, clause)).keep(token("")),
_ => {
let from = alt_lang.from;
let to = alt_lang.to;
problem(
format!("Invalid alternative language: {}", alt_lang.value),
move |_| from,
move |_| to,
)
}
})
}
/// Parse a Jyutping pronunciation line, for Cantonese (yue) and Mandarin (zho)
///
/// For example, here's a Cantonese pronunciation line:
///
/// ```
/// # use wordshk_tools::dict::{SegmentType::*};
/// # use wordshk_tools::parse::{parse_pr_line};
/// # let source = indoc::indoc! {"
/// yue:我個耳筒繑埋咗一嚿。 (ngo5 go3 ji5 tung2 kiu5 maai4 zo2 jat1 gau6.)
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_pr_line("yue"), source,
/// (vec![(Text, "我個耳筒繑埋咗一嚿。".into())], Some("ngo5 go3 ji5 tung2 kiu5 maai4 zo2 jat1 gau6.".into()))
/// # );
/// ```
///
pub fn parse_pr_line<'a>(name: &'static str) -> lip::BoxedParser<'a, PrLine, ()> {
(succeed!(|line: String| {
let open_paren_index = line.rfind('(');
// println!("open_paren_index: {:?}", open_paren_index);
// println!("line.chars().next_back(): {:?}", line.chars().next_back());
if open_paren_index.is_some() && line.chars().next_back() == Some(')') {
let open_paren = open_paren_index.unwrap();
let paren_segment = &line[open_paren + 1..line.len() - 1];
// println!("paren_segment: {:?}", paren_segment);
if looks_like_pr(&paren_segment) {
// println!("Found pr line with pr: {paren_segment}");
return (
(&line[0..open_paren]).to_string(),
Some(paren_segment.to_string()),
);
}
}
return (line.to_string(), None);
})
.skip(token(name))
.skip(token(":"))
.keep(take_chomped(chomp_while1c(
&(|c: &char| c != &'\n' && c != &'\r'),
"line",
))))
.map(move |(line, pr)| match parse_line(name).run(&line, ()) {
ParseResult::Ok { output, .. } => (output, pr),
ParseResult::Err { message, .. } => {
println!("Error in parse_line inside parse_pr_line: {:?}", message);
(vec![], pr)
}
})
}
/// Parse an example for a word
///
/// For example, here's an example for the word 便:
///
/// ```
/// # use wordshk_tools::dict::{Eg, SegmentType::*};
/// # use wordshk_tools::parse::{parse_eg};
/// # let source = indoc::indoc! {"
/// <eg>
/// zho:後邊 (hau6 bin6)
/// yue:#後便 (hau6 bin6)
/// eng:back side
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_eg(), source,
/// Eg {
/// zho: Some((vec![(Text, "後邊".into())], Some("hau6 bin6".into()))),
/// yue: Some((vec![(Link, "後便".into())], Some("hau6 bin6".into()))),
/// eng: Some(vec![(Text, "back side".into())]),
/// }
/// # );
/// ```
///
pub fn parse_eg<'a>() -> lip::BoxedParser<'a, Eg, ()> {
succeed!(|zho, yue, eng| Eg { zho, yue, eng })
.skip(token("<eg>"))
.skip(parse_br())
.keep(optional(
None,
succeed!(Some)
.keep(parse_pr_line("zho"))
.skip(optional((), parse_br())),
))
.keep(optional(
None,
succeed!(Some)
.keep(parse_pr_line("yue"))
.skip(optional((), parse_br())),
))
// only a single line is accepted in eg
.keep(optional(None, succeed!(Some).keep(parse_named_line("eng"))))
.skip(optional((), parse_br()))
}
/// Parse a rich definition
///
/// Rich definitions start with an <explanation> tag and
/// contains one or more <eg> tags.
///
/// For example, here's part of the rich definition for the word 便:
///
/// ```
/// # use wordshk_tools::dict::{Def, Eg, SegmentType::*};
/// # use wordshk_tools::parse::{parse_rich_def};
/// # let source = indoc::indoc! {"
/// <explanation>
/// yue:用於方位詞之後。書寫時,亦會用#邊 代替本字
/// eng:suffix for directional/positional noun
/// <eg>
/// yue:#開便 (hoi1 bin6)
/// eng:outside
/// <eg>
/// yue:#呢便 (nei1 bin6)
/// eng:this side
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_rich_def(), source,
/// Def {
/// yue: vec![vec![(Text, "用於方位詞之後。書寫時,亦會用".into()), (Link, "邊".into()), (Text, "代替本字".into())]],
/// eng: Some(vec![vec![(Text, "suffix for directional/positional noun".into())]]),
/// alts: vec![],
/// egs: vec![ Eg {
/// zho: None,
/// yue: Some((vec![(Link, "開便".into())], Some("hoi1 bin6".into()))),
/// eng: Some(vec![(Text, "outside".into())]),
/// },
/// Eg {
/// zho: None,
/// yue: Some((vec![(Link, "呢便".into())], Some("nei1 bin6".into()))),
/// eng: Some(vec![(Text, "this side".into())]),
/// },
/// ],
/// }
/// # );
/// ```
///
pub fn parse_rich_def<'a>() -> lip::BoxedParser<'a, Def, ()> {
succeed!(|yue, eng, alts, egs| Def {
yue,
eng,
alts,
egs
})
.skip(token("<explanation>"))
.skip(parse_br())
.keep(parse_named_clause("yue"))
.keep(optional(
None,
succeed!(Some).keep(parse_named_clause("eng")),
))
.keep(zero_or_more(
succeed!(|clause| clause)
.keep(parse_alt_clause())
.skip(optional((), parse_br())),
))
.keep(one_or_more(parse_eg()))
}
/// Parse a simple definition
///
/// For example, here's a simple definition for the word 奸爸爹
///
/// ```
/// # use wordshk_tools::dict::{Def, AltLang, SegmentType::*};
/// # use wordshk_tools::parse::{parse_simple_def};
/// # let source = indoc::indoc! {"
/// yue:#加油
/// eng:cheer up
/// jpn:頑張って(がんばって)
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_simple_def(), source,
/// Def {
/// yue: vec![vec![(Link, "加油".into())]],
/// eng: Some(vec![vec![(Text, "cheer up".into())]]),
/// alts: vec![(AltLang::Jpn, vec![vec![(Text, "頑張って(がんばって)".into())]])],
/// egs: vec![],
/// }
/// # );
/// ```
///
pub fn parse_simple_def<'a>() -> lip::BoxedParser<'a, Def, ()> {
succeed!(|yue, eng, alts| Def {
yue,
eng,
egs: Vec::new(),
alts
})
.keep(parse_named_clause("yue"))
.keep(optional(
None,
succeed!(Some).keep(parse_named_clause("eng")),
))
.keep(zero_or_more(
succeed!(|clause| clause)
.keep(parse_alt_clause())
.skip(optional((), parse_br())),
))
}
/// Parse a series of definitions for a word, separated by "\-\-\-\-"
///
/// For example, here's a series of definitions for the word 兄
///
/// ```
/// # use wordshk_tools::dict::{Def, Eg, SegmentType::*};
/// # use wordshk_tools::parse::{parse_defs};
/// # let source = indoc::indoc! {"
/// <explanation>
/// yue:同父母或者同監護人,年紀比你大嘅男性
/// eng:elder brother
/// <eg>
/// yue:#兄弟 (hing1 dai6)
/// eng:brothers
/// ----
/// yue:對男性朋友嘅尊稱
/// eng:politely addressing a male friend
/// # "};
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_defs(), source,
/// vec![
/// Def {
/// yue: vec![vec![(Text, "同父母或者同監護人,年紀比你大嘅男性".into())]],
/// eng: Some(vec![vec![(Text, "elder brother".into())]]),
/// alts: vec![],
/// egs: vec![
/// Eg {
/// zho: None,
/// yue: Some((vec![(Link, "兄弟".into())], Some("hing1 dai6".into()))),
/// eng: Some(vec![(Text, "brothers".into())]),
/// }
/// ],
/// },
/// Def {
/// yue: vec![vec![(Text, "對男性朋友嘅尊稱".into())]],
/// eng: Some(vec![vec![(Text, "politely addressing a male friend".into())]]),
/// alts: vec![],
/// egs: vec![],
/// },
/// ]
/// # );
/// ```
///
pub fn parse_defs<'a>() -> lip::BoxedParser<'a, Vec<Def>, ()> {
succeed!(|defs| defs).keep(one_or_more(
succeed!(|def| def)
.keep(one_of!(parse_simple_def(), parse_rich_def()))
.skip(optional(
(),
succeed!(|_| ()).keep(token("----")).skip(parse_br()),
)),
))
}
/// Parse the content of an [Entry]
///
/// id and variants are parsed by [parse_dict] and passed in to this function.
///
/// For example, here's the content of the Entry for 奸爸爹
///
/// ```
/// # use wordshk_tools::dict::{Def, Entry, Variants, Variant, AltLang, SegmentType::*};
/// # use wordshk_tools::jyutping::LaxJyutPings;
/// # use wordshk_tools::parse::{parse_content};
/// # let source = indoc::indoc! {"
/// (pos:語句)(label:外來語)(label:潮語)(label:香港)
/// yue:#加油
/// eng:cheer up
/// jpn:頑張って(がんばって)
/// # "};
///
/// let id = 98634;
/// let published = true;
/// // prs omitted below for brevity
/// let variants = Variants(vec![(Variant {word: "奸爸爹".into(), prs: LaxJyutPings(vec![])})]);
///
/// // which parses to:
///
/// # lip::assert_succeed(parse_content(id, variants.clone(), published), source,
/// Some(Entry {
/// id: id,
/// variants: variants,
/// poses: vec!["語句".into()],
/// labels: vec!["外來語".into(), "潮語".into(), "香港".into()],
/// sims: vec![],
/// ants: vec![],
/// refs: vec![],
/// imgs: vec![],
/// defs: vec![Def {
/// yue: vec![vec![(Link, "加油".into())]],
/// eng: Some(vec![vec![(Text, "cheer up".into())]]),
/// alts: vec![(AltLang::Jpn, vec![vec![(Text, "頑張って(がんばって)".into())]])],
/// egs: vec![],
/// }],
/// published: published,
/// })
/// # );
/// ```
///
pub fn parse_content<'a>(
id: usize,
variants: Variants,
published: bool,
) -> lip::BoxedParser<'a, Option<Entry>, ()> {
one_of!(
succeed!(|poses, labels, sims, ants, refs, imgs, defs| Some(Entry {
id,
variants,
poses,
labels,
sims,
ants,
refs,
imgs,
defs,
published,
}))
.keep(parse_tags("pos"))
.keep(parse_tags("label"))
.keep(parse_tags("sim"))
.keep(parse_tags("ant"))
.keep(parse_tags("ref"))
.keep(parse_tags("img"))
.skip(parse_br())
.keep(parse_defs()),
succeed!(|_| None).keep(token("未有內容 NO DATA"))
)
}