wikiparser-node 0.7.0-m → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/README.md +39 -0
  2. package/config/llwiki.json +35 -0
  3. package/config/moegirl.json +44 -0
  4. package/config/zhwiki.json +466 -0
  5. package/index.js +259 -11
  6. package/lib/element.js +481 -7
  7. package/lib/node.js +552 -6
  8. package/lib/ranges.js +130 -0
  9. package/lib/text.js +112 -21
  10. package/lib/title.js +27 -0
  11. package/mixin/attributeParent.js +117 -0
  12. package/mixin/fixedToken.js +40 -0
  13. package/mixin/hidden.js +3 -0
  14. package/mixin/singleLine.js +31 -0
  15. package/mixin/sol.js +65 -0
  16. package/package.json +5 -4
  17. package/parser/brackets.js +1 -0
  18. package/parser/commentAndExt.js +4 -3
  19. package/parser/converter.js +1 -0
  20. package/parser/externalLinks.js +1 -0
  21. package/parser/hrAndDoubleUnderscore.js +1 -0
  22. package/parser/html.js +1 -0
  23. package/parser/links.js +5 -4
  24. package/parser/list.js +1 -0
  25. package/parser/magicLinks.js +5 -4
  26. package/parser/quotes.js +2 -1
  27. package/parser/selector.js +177 -0
  28. package/parser/table.js +1 -0
  29. package/src/arg.js +116 -2
  30. package/src/atom/hidden.js +2 -0
  31. package/src/atom/index.js +17 -0
  32. package/src/attribute.js +171 -4
  33. package/src/attributes.js +306 -4
  34. package/src/charinsert.js +57 -1
  35. package/src/converter.js +108 -2
  36. package/src/converterFlags.js +187 -0
  37. package/src/converterRule.js +184 -1
  38. package/src/extLink.js +120 -1
  39. package/src/gallery.js +55 -5
  40. package/src/hasNowiki/index.js +12 -0
  41. package/src/hasNowiki/pre.js +12 -0
  42. package/src/heading.js +55 -4
  43. package/src/html.js +118 -3
  44. package/src/imageParameter.js +176 -5
  45. package/src/imagemap.js +60 -1
  46. package/src/imagemapLink.js +13 -1
  47. package/src/index.js +527 -3
  48. package/src/link/category.js +37 -1
  49. package/src/link/file.js +159 -2
  50. package/src/link/galleryImage.js +59 -1
  51. package/src/link/index.js +269 -1
  52. package/src/magicLink.js +90 -9
  53. package/src/nested/choose.js +1 -0
  54. package/src/nested/combobox.js +1 -0
  55. package/src/nested/index.js +30 -3
  56. package/src/nested/references.js +1 -0
  57. package/src/nowiki/comment.js +25 -1
  58. package/src/nowiki/dd.js +47 -1
  59. package/src/nowiki/doubleUnderscore.js +31 -1
  60. package/src/nowiki/hr.js +20 -1
  61. package/src/nowiki/index.js +23 -1
  62. package/src/nowiki/list.js +5 -2
  63. package/src/nowiki/noinclude.js +14 -0
  64. package/src/nowiki/quote.js +16 -2
  65. package/src/onlyinclude.js +26 -1
  66. package/src/paramTag/index.js +24 -1
  67. package/src/paramTag/inputbox.js +44 -0
  68. package/src/parameter.js +148 -6
  69. package/src/syntax.js +68 -0
  70. package/src/table/index.js +940 -2
  71. package/src/table/td.js +225 -5
  72. package/src/table/tr.js +247 -2
  73. package/src/tagPair/ext.js +24 -4
  74. package/src/tagPair/include.js +24 -0
  75. package/src/tagPair/index.js +52 -2
  76. package/src/transclude.js +512 -11
  77. package/tool/index.js +1202 -0
  78. package/util/debug.js +73 -0
  79. package/util/string.js +48 -1
  80. package/config/minimum.json +0 -142
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ [![npm version](https://badge.fury.io/js/wikiparser-node.svg)](https://www.npmjs.com/package/wikiparser-node)
2
+
3
+ # 简介
4
+ wikiparser-node 是一款由 Bhsd 开发的基于 [Node.js](https://nodejs.org/en/) 环境的离线[维基文本](https://www.mediawiki.org/wiki/Wikitext)语法解析器,可以解析绝大部分的维基语法并生成[语法树](https://en.wikipedia.org/wiki/Abstract_syntax_tree),还可以很方便地对语法树进行查询和修改,最后返回修改后的维基文本。语法树的每个节点对应一个仿照 [HTMLElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement) 类设计的类 [Token](https://github.com/bhsd-harry/wikiparser-node/wiki/01.-Token)。
5
+
6
+ # 使用方法
7
+
8
+ ```js
9
+ var Parser = require('wikiparser-node');
10
+ ```
11
+
12
+ 更多文档请查阅 [Wiki](https://github.com/bhsd-harry/wikiparser-node/wiki)。
13
+
14
+ # 目录
15
+
16
+ 1. [Parser](https://github.com/bhsd-harry/wikiparser-node/wiki/Home#parser)
17
+ 2. [AstElement](https://github.com/bhsd-harry/wikiparser-node/wiki/01.-Token#astelement)
18
+ 3. [Token](https://github.com/bhsd-harry/wikiparser-node/wiki/01.-Token#token)
19
+ 4. [CommentToken](https://github.com/bhsd-harry/wikiparser-node/wiki/02.-CommentToken等#commenttoken)
20
+ 5. [ExtToken](https://github.com/bhsd-harry/wikiparser-node/wiki/03.-ExtToken)
21
+ 6. [AttributeToken](https://github.com/bhsd-harry/wikiparser-node/wiki/04.-AttributeToken)
22
+ 7. [HeadingToken](https://github.com/bhsd-harry/wikiparser-node/wiki/05.-HeadingToken)
23
+ 8. [ArgToken](https://github.com/bhsd-harry/wikiparser-node/wiki/06.-ArgToken)
24
+ 9. [TranscludeToken](https://github.com/bhsd-harry/wikiparser-node/wiki/07.-TranscludeToken)
25
+ 10. [ParameterToken](https://github.com/bhsd-harry/wikiparser-node/wiki/08.-ParameterToken)
26
+ 11. [HtmlToken](https://github.com/bhsd-harry/wikiparser-node/wiki/09.-HtmlToken)
27
+ 12. [TableToken](https://github.com/bhsd-harry/wikiparser-node/wiki/10.-TableToken)
28
+ 13. [TdToken](https://github.com/bhsd-harry/wikiparser-node/wiki/11.-TdToken)
29
+ 14. [DoubleUnderscoreToken](https://github.com/bhsd-harry/wikiparser-node/wiki/12.-DoubleUnderscoreToken)
30
+ 15. [LinkToken](https://github.com/bhsd-harry/wikiparser-node/wiki/13.-LinkToken)
31
+ 16. [CategoryToken](https://github.com/bhsd-harry/wikiparser-node/wiki/14.-CategoryToken)
32
+ 17. [FileToken](https://github.com/bhsd-harry/wikiparser-node/wiki/15.-FileToken和GalleryImageToken#filetoken)
33
+ 18. [ImageParameterToken](https://github.com/bhsd-harry/wikiparser-node/wiki/16.-ImageParameterToken)
34
+ 19. [ExtLinkToken](https://github.com/bhsd-harry/wikiparser-node/wiki/17.-ExtLinkToken和MagicLinkToken#extlinktoken)
35
+ 20. [MagicLinkToken](https://github.com/bhsd-harry/wikiparser-node/wiki/17.-ExtLinkToken和MagicLinkToken#magiclinktoken)
36
+ 21. [ConverterToken](https://github.com/bhsd-harry/wikiparser-node/wiki/18.-ConverterToken)
37
+ 22. [ConverterRuleToken](https://github.com/bhsd-harry/wikiparser-node/wiki/19.-ConverterRuleToken)
38
+ 23. [选择器](https://github.com/bhsd-harry/wikiparser-node/wiki/20.-选择器)
39
+ 24. [$ (TokenCollection)](https://github.com/bhsd-harry/wikiparser-node/wiki/21.-$-(TokenCollection))
@@ -518,6 +518,41 @@
518
518
  ]
519
519
  ],
520
520
  "protocol": "bitcoin:|ftp://|ftps://|geo:|git://|gopher://|http://|https://|irc://|ircs://|magnet:|mailto:|mms://|news:|nntp://|redis://|sftp://|sip:|sips:|sms:|ssh://|svn://|tel:|telnet://|urn:|worldwind://|xmpp:",
521
+ "interwiki": [
522
+ "arxiv",
523
+ "aswiki",
524
+ "cache",
525
+ "cmoegirl",
526
+ "commons",
527
+ "doi",
528
+ "google",
529
+ "googlegroups",
530
+ "gsnews",
531
+ "imdb",
532
+ "jawiki",
533
+ "komica",
534
+ "mediawikiwiki",
535
+ "metawikimedia",
536
+ "moegirl",
537
+ "mw",
538
+ "sifaswiki",
539
+ "sifwiki",
540
+ "wikia",
541
+ "wikibooks",
542
+ "wikidata",
543
+ "wikimedia",
544
+ "wikinews",
545
+ "wikiinfo",
546
+ "wikipedia",
547
+ "wikiquote",
548
+ "wikisource",
549
+ "wikispecies",
550
+ "wikiversity",
551
+ "wikivoyage",
552
+ "wikt",
553
+ "wiktionary",
554
+ "zhwiki"
555
+ ],
521
556
  "img": {
522
557
  "thumbnail": "thumbnail",
523
558
  "thumb": "thumbnail",
@@ -610,6 +610,50 @@
610
610
  ]
611
611
  ],
612
612
  "protocol": "bitcoin:|ftp://|ftps://|geo:|git://|gopher://|http://|https://|irc://|ircs://|magnet:|mailto:|mms://|news:|nntp://|redis://|sftp://|sip:|sips:|sms:|ssh://|svn://|tel:|telnet://|urn:|worldwind://|xmpp:",
613
+ "interwiki": [
614
+ "commons",
615
+ "mediawikiwiki",
616
+ "metawikimedia",
617
+ "mw",
618
+ "wikibooks",
619
+ "wikidata",
620
+ "wikimedia",
621
+ "wikinews",
622
+ "wikipedia",
623
+ "wikiquote",
624
+ "wikisource",
625
+ "wikispecies",
626
+ "wikiversity",
627
+ "wikivoyage",
628
+ "wikt",
629
+ "wiktionary",
630
+ "cc",
631
+ "cm",
632
+ "en",
633
+ "enmoe",
634
+ "enwp",
635
+ "fandom",
636
+ "ghia",
637
+ "huiji",
638
+ "ja",
639
+ "jamoe",
640
+ "jawp",
641
+ "library",
642
+ "meta",
643
+ "phab",
644
+ "pmid",
645
+ "shoutwiki",
646
+ "translatewiki",
647
+ "zh",
648
+ "zhmoe",
649
+ "zhmoegirl",
650
+ "zhtest",
651
+ "zhwp",
652
+ "文库",
653
+ "萌娘共享",
654
+ "萌娘文库",
655
+ "萌百"
656
+ ],
613
657
  "img": {
614
658
  "thumbnail": "thumbnail",
615
659
  "thumb": "thumbnail",
@@ -708,6 +708,472 @@
708
708
  ]
709
709
  ],
710
710
  "protocol": "bitcoin:|ftp://|ftps://|geo:|git://|gopher://|http://|https://|irc://|ircs://|magnet:|mailto:|mms://|news:|nntp://|redis://|sftp://|sip:|sips:|sms:|ssh://|svn://|tel:|telnet://|urn:|worldwind://|xmpp:",
711
+ "interwiki": [
712
+ "acronym",
713
+ "advisory",
714
+ "advogato",
715
+ "aew",
716
+ "appropedia",
717
+ "aquariumwiki",
718
+ "arborwiki",
719
+ "arxiv",
720
+ "baden",
721
+ "battlestarwiki",
722
+ "bcnbio",
723
+ "beacha",
724
+ "betawiki",
725
+ "bibcode",
726
+ "bibliowiki",
727
+ "bluwiki",
728
+ "botwiki",
729
+ "boxrec",
730
+ "bugzilla",
731
+ "bulba",
732
+ "c",
733
+ "c2",
734
+ "c2find",
735
+ "cache",
736
+ "ĉej",
737
+ "centralwikia",
738
+ "chej",
739
+ "choralwiki",
740
+ "citizendium",
741
+ "comixpedia",
742
+ "commons",
743
+ "communityscheme",
744
+ "communitywiki",
745
+ "comune",
746
+ "creativecommons",
747
+ "creativecommonswiki",
748
+ "cxej",
749
+ "dcc",
750
+ "dcdatabase",
751
+ "dcma",
752
+ "debian",
753
+ "delicious",
754
+ "devmo",
755
+ "dico",
756
+ "dicoado",
757
+ "dictionary",
758
+ "dict",
759
+ "disinfopedia",
760
+ "distributedproofreaders",
761
+ "distributedproofreadersca",
762
+ "dmoz",
763
+ "dmozs",
764
+ "doi",
765
+ "donate",
766
+ "doom_wiki",
767
+ "download",
768
+ "dbdump",
769
+ "dpd",
770
+ "dpla",
771
+ "drae",
772
+ "dreamhost",
773
+ "drumcorpswiki",
774
+ "dwjwiki",
775
+ "ecoreality",
776
+ "elibre",
777
+ "emacswiki",
778
+ "encyc",
779
+ "energiewiki",
780
+ "englyphwiki",
781
+ "enkol",
782
+ "eokulturcentro",
783
+ "esolang",
784
+ "etherpad",
785
+ "ethnologue",
786
+ "ethnologuefamily",
787
+ "evowiki",
788
+ "exotica",
789
+ "fanimutationwiki",
790
+ "fedora",
791
+ "finalfantasy",
792
+ "finnix",
793
+ "flickruser",
794
+ "flickrphoto",
795
+ "floralwiki",
796
+ "foldoc",
797
+ "foundation",
798
+ "foundationsite",
799
+ "foxwiki",
800
+ "freebio",
801
+ "freebsdman",
802
+ "freeculturewiki",
803
+ "freedomdefined",
804
+ "freefeel",
805
+ "freekiwiki",
806
+ "freenode",
807
+ "freesoft",
808
+ "ganfyd",
809
+ "gardenology",
810
+ "gausswiki",
811
+ "gentoo",
812
+ "genwiki",
813
+ "gerrit",
814
+ "git",
815
+ "gitlab",
816
+ "globalcontribs",
817
+ "glottolog",
818
+ "glottopedia",
819
+ "google",
820
+ "googledefine",
821
+ "googlegroups",
822
+ "guildwarswiki",
823
+ "guildwiki",
824
+ "gucprefix",
825
+ "gutenberg",
826
+ "gutenbergwiki",
827
+ "hackerspaces",
828
+ "h2wiki",
829
+ "hammondwiki",
830
+ "hdl",
831
+ "heraldik",
832
+ "horizonlabs",
833
+ "hrwiki",
834
+ "hrfwiki",
835
+ "hupwiki",
836
+ "iarchive",
837
+ "imdbname",
838
+ "imdbtitle",
839
+ "imdbcompany",
840
+ "imdbcharacter",
841
+ "incubator",
842
+ "infosecpedia",
843
+ "infosphere",
844
+ "irc",
845
+ "ircs",
846
+ "ircrc",
847
+ "rcirc",
848
+ "iso639-3",
849
+ "issn",
850
+ "iuridictum",
851
+ "jaglyphwiki",
852
+ "jefo",
853
+ "jerseydatabase",
854
+ "jira",
855
+ "jspwiki",
856
+ "jstor",
857
+ "kamelo",
858
+ "karlsruhe",
859
+ "kinowiki",
860
+ "komicawiki",
861
+ "kontuwiki",
862
+ "lexemes",
863
+ "liberachat",
864
+ "libreplanet",
865
+ "lingualibre",
866
+ "linguistlist",
867
+ "linuxwiki",
868
+ "linuxwikide",
869
+ "listarchive",
870
+ "liswiki",
871
+ "literateprograms",
872
+ "livepedia",
873
+ "localwiki",
874
+ "lojban",
875
+ "lokalhistoriewiki",
876
+ "lostpedia",
877
+ "lqwiki",
878
+ "luxo",
879
+ "mail",
880
+ "mailarchive",
881
+ "mariowiki",
882
+ "marveldatabase",
883
+ "meatball",
884
+ "mw",
885
+ "mediazilla",
886
+ "memoryalpha",
887
+ "metawiki",
888
+ "metawikimedia",
889
+ "metawikipedia",
890
+ "mineralienatlas",
891
+ "mixnmatch",
892
+ "moinmoin",
893
+ "monstropedia",
894
+ "mosapedia",
895
+ "mozcom",
896
+ "mozillawiki",
897
+ "mozillazinekb",
898
+ "musicbrainz",
899
+ "mediawikiwiki",
900
+ "mwod",
901
+ "mwot",
902
+ "nkcells",
903
+ "nlab",
904
+ "nara",
905
+ "nosmoke",
906
+ "nost",
907
+ "nostalgia",
908
+ "oeis",
909
+ "oldwikisource",
910
+ "olpc",
911
+ "omegawiki",
912
+ "onelook",
913
+ "openlibrary",
914
+ "openstreetmap",
915
+ "openwetware",
916
+ "opera7wiki",
917
+ "organicdesign",
918
+ "orthodoxwiki",
919
+ "osmwiki",
920
+ "otrs",
921
+ "otrswiki",
922
+ "ourmedia",
923
+ "outreach",
924
+ "outreachwiki",
925
+ "owasp",
926
+ "panawiki",
927
+ "patwiki",
928
+ "paws",
929
+ "personaltelco",
930
+ "petscan",
931
+ "phab",
932
+ "phabricator",
933
+ "phwiki",
934
+ "phpwiki",
935
+ "planetmath",
936
+ "pmeg",
937
+ "pmid",
938
+ "pokewiki",
939
+ "pokéwiki",
940
+ "policy",
941
+ "proofwiki",
942
+ "pyrev",
943
+ "pythoninfo",
944
+ "pythonwiki",
945
+ "pywiki",
946
+ "quality",
947
+ "quarry",
948
+ "regiowiki",
949
+ "rev",
950
+ "revo",
951
+ "rfc",
952
+ "rheinneckar",
953
+ "robowiki",
954
+ "rodovid",
955
+ "rowiki",
956
+ "rt",
957
+ "s23wiki",
958
+ "scholar",
959
+ "schoolswp",
960
+ "scores",
961
+ "scoutwiki",
962
+ "scramble",
963
+ "seapig",
964
+ "seattlewiki",
965
+ "slwiki",
966
+ "semantic-mw",
967
+ "senseislibrary",
968
+ "sep11",
969
+ "sharemap",
970
+ "silcode",
971
+ "slashdot",
972
+ "sourceforge",
973
+ "spcom",
974
+ "species",
975
+ "squeak",
976
+ "stats",
977
+ "stewardry",
978
+ "strategy",
979
+ "strategywiki",
980
+ "sulutil",
981
+ "swtrain",
982
+ "svn",
983
+ "swinbrain",
984
+ "tabwiki",
985
+ "tclerswiki",
986
+ "technorati",
987
+ "tenwiki",
988
+ "testwiki",
989
+ "testwikidata",
990
+ "test2wiki",
991
+ "tfwiki",
992
+ "thelemapedia",
993
+ "theopedia",
994
+ "thinkwiki",
995
+ "ticket",
996
+ "tmbw",
997
+ "tmnet",
998
+ "tmwiki",
999
+ "toolforge",
1000
+ "toollabs",
1001
+ "tools",
1002
+ "tswiki",
1003
+ "translatewiki",
1004
+ "tviv",
1005
+ "tvtropes",
1006
+ "twiki",
1007
+ "twl",
1008
+ "tyvawiki",
1009
+ "umap",
1010
+ "uncyclopedia",
1011
+ "unihan",
1012
+ "unreal",
1013
+ "urbandict",
1014
+ "usej",
1015
+ "usemod",
1016
+ "usability",
1017
+ "utrs",
1018
+ "vikidia",
1019
+ "viaf",
1020
+ "vlos",
1021
+ "vkol",
1022
+ "votewiki",
1023
+ "vrtwiki",
1024
+ "vrts",
1025
+ "weirdgloop",
1026
+ "werelate",
1027
+ "wg",
1028
+ "wikia",
1029
+ "wikiasite",
1030
+ "wikiapiary",
1031
+ "wikibooks",
1032
+ "wikichristian",
1033
+ "wikicities",
1034
+ "wikicity",
1035
+ "wikiconference",
1036
+ "wikidata",
1037
+ "wikiedudashboard",
1038
+ "wikif1",
1039
+ "wikifur",
1040
+ "wikihow",
1041
+ "wikiindex",
1042
+ "wikilemon",
1043
+ "wikilivres",
1044
+ "wikilivresru",
1045
+ "wikimac-de",
1046
+ "wikimedia",
1047
+ "wikinews",
1048
+ "wikinfo",
1049
+ "wikinvest",
1050
+ "wikiotics",
1051
+ "wikipapers",
1052
+ "wikipedia",
1053
+ "wikipediawikipedia",
1054
+ "wikiquote",
1055
+ "wikisophia",
1056
+ "wikisource",
1057
+ "wikisp",
1058
+ "wikispecies",
1059
+ "wikispot",
1060
+ "wikiskripta",
1061
+ "wikitech",
1062
+ "labsconsole",
1063
+ "wikiti",
1064
+ "wikiversity",
1065
+ "wikivoyage",
1066
+ "betawikiversity",
1067
+ "wikiwikiweb",
1068
+ "wiktionary",
1069
+ "wlug",
1070
+ "wmam",
1071
+ "wmar",
1072
+ "wmat",
1073
+ "wmau",
1074
+ "wmbd",
1075
+ "wmbe",
1076
+ "wmbr",
1077
+ "wmca",
1078
+ "wmch",
1079
+ "wmcl",
1080
+ "wmcn",
1081
+ "wmco",
1082
+ "wmcz",
1083
+ "wmcz_docs",
1084
+ "wmcz_old",
1085
+ "wmdc",
1086
+ "securewikidc",
1087
+ "wmde",
1088
+ "wmdk",
1089
+ "wmee",
1090
+ "wmec",
1091
+ "wmes",
1092
+ "wmet",
1093
+ "wmfdashboard",
1094
+ "wmfi",
1095
+ "wmfr",
1096
+ "wmge",
1097
+ "wmhi",
1098
+ "wmhk",
1099
+ "wmhu",
1100
+ "wmid",
1101
+ "wmil",
1102
+ "wmin",
1103
+ "wmit",
1104
+ "wmke",
1105
+ "wmmk",
1106
+ "wmmx",
1107
+ "wmnl",
1108
+ "wmnyc",
1109
+ "wmno",
1110
+ "wmpa-us",
1111
+ "wmph",
1112
+ "wmpl",
1113
+ "wmplsite",
1114
+ "wmpt",
1115
+ "wmpunjabi",
1116
+ "wmromd",
1117
+ "wmrs",
1118
+ "wmru",
1119
+ "wmse",
1120
+ "wmsk",
1121
+ "wmtr",
1122
+ "wmtw",
1123
+ "wmua",
1124
+ "wmuk",
1125
+ "wmve",
1126
+ "wmza",
1127
+ "wm2005",
1128
+ "wm2006",
1129
+ "wm2007",
1130
+ "wm2008",
1131
+ "wm2009",
1132
+ "wm2010",
1133
+ "wm2011",
1134
+ "wm2012",
1135
+ "wm2013",
1136
+ "wm2014",
1137
+ "wm2015",
1138
+ "wm2016",
1139
+ "wm2017",
1140
+ "wm2018",
1141
+ "wmania",
1142
+ "wikimania",
1143
+ "wikispore",
1144
+ "wmteam",
1145
+ "wmf",
1146
+ "wmfblog",
1147
+ "wmdeblog",
1148
+ "wookieepedia",
1149
+ "wowwiki",
1150
+ "wqy",
1151
+ "wurmpedia",
1152
+ "xtools",
1153
+ "zrhwiki",
1154
+ "zum",
1155
+ "zwiki",
1156
+ "m",
1157
+ "meta",
1158
+ "d",
1159
+ "cz",
1160
+ "dk",
1161
+ "epo",
1162
+ "jp",
1163
+ "minnan",
1164
+ "zh-cfr",
1165
+ "cmn",
1166
+ "en-simple",
1167
+ "w",
1168
+ "wikt",
1169
+ "q",
1170
+ "b",
1171
+ "n",
1172
+ "s",
1173
+ "chapter",
1174
+ "v",
1175
+ "voy"
1176
+ ],
711
1177
  "img": {
712
1178
  "thumbnail": "thumbnail",
713
1179
  "thumb": "thumbnail",