only_ever_generator 8.4.6 → 8.4.8
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.
- package/dist/bootstrap/app.d.ts +6 -3
- package/dist/bootstrap/app.d.ts.map +1 -1
- package/dist/bootstrap/app.js +11 -17
- package/dist/bootstrap/app.js.map +1 -1
- package/dist/card_gen/generate_cards.d.ts +2 -3
- package/dist/card_gen/generate_cards.d.ts.map +1 -1
- package/dist/card_gen/generate_cards.js +22 -15
- package/dist/card_gen/generate_cards.js.map +1 -1
- package/dist/constants/prompt_data.d.ts +4 -4
- package/dist/constants/prompt_data.js +302 -302
- package/dist/constants/prompts/card_gen_prompt.js +160 -160
- package/dist/constants/prompts/typology_prompt.js +131 -131
- package/dist/constants/source_data.d.ts +171 -171
- package/dist/constants/source_data.js +973 -973
- package/dist/embedding_generation/local_consolidation.js +104 -104
- package/dist/helper/build_concept_facts_schema.d.ts +42 -42
- package/dist/helper/build_concept_facts_schema.js +44 -44
- package/dist/helper/qdrant_db_methods.d.ts.map +1 -1
- package/dist/helper/schema_helper/build_card_schema.d.ts +1 -9
- package/dist/helper/schema_helper/build_card_schema.d.ts.map +1 -1
- package/dist/helper/schema_helper/build_card_schema.js +47 -50
- package/dist/helper/schema_helper/build_card_schema.js.map +1 -1
- package/dist/helper/schema_helper/build_concept_facts_schema.d.ts +1 -1
- package/dist/helper/schema_helper/build_concept_facts_schema.d.ts.map +1 -1
- package/dist/helper/schema_helper/build_concept_facts_schema.js +20 -5
- package/dist/helper/schema_helper/build_concept_facts_schema.js.map +1 -1
- package/dist/helper/schema_helper/build_summary_schema.d.ts +1 -1
- package/dist/helper/schema_helper/build_summary_schema.d.ts.map +1 -1
- package/dist/helper/schema_helper/build_summary_schema.js +18 -7
- package/dist/helper/schema_helper/build_summary_schema.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/parse/response_format_card.d.ts +176 -176
- package/dist/parse/response_format_card.js +371 -371
- package/dist/parse/response_format_typology.d.ts +1 -1
- package/dist/parse/response_format_typology.js +46 -46
- package/dist/services/get_prompts.d.ts +8 -7
- package/dist/services/get_prompts.d.ts.map +1 -1
- package/dist/services/get_prompts.js +69 -21
- package/dist/services/get_prompts.js.map +1 -1
- package/dist/typology_gen/generate_concept_facts.d.ts +2 -3
- package/dist/typology_gen/generate_concept_facts.d.ts.map +1 -1
- package/dist/typology_gen/generate_concept_facts.js +25 -15
- package/dist/typology_gen/generate_concept_facts.js.map +1 -1
- package/dist/typology_gen/generate_typology.d.ts +2 -1
- package/dist/typology_gen/generate_typology.d.ts.map +1 -1
- package/dist/typology_gen/generate_typology.js +24 -13
- package/dist/typology_gen/generate_typology.js.map +1 -1
- package/dist/typology_gen/summarize.d.ts +2 -3
- package/dist/typology_gen/summarize.d.ts.map +1 -1
- package/dist/typology_gen/summarize.js +24 -13
- package/dist/typology_gen/summarize.js.map +1 -1
- package/package.json +39 -38
- package/src/bootstrap/app.ts +418 -416
- package/src/card_gen/generate_cards.ts +347 -345
- package/src/config.ts +11 -11
- package/src/constants/api_constants.ts +7 -7
- package/src/constants/prompts/card_gen_prompt.ts +164 -164
- package/src/constants/prompts/typology_prompt.ts +139 -139
- package/src/embedding_generation/consolidation/global_consolidation.ts +96 -96
- package/src/embedding_generation/consolidation/local_consolidation.ts +141 -141
- package/src/embedding_generation/consolidation/write_consolidated_data.ts +98 -98
- package/src/embedding_generation/generate_embeddings.ts +42 -42
- package/src/embedding_generation/parse_embedding_response.ts +31 -31
- package/src/enums/card_type_enum.ts +6 -6
- package/src/gap_fill/calculate_gap_fill.ts +50 -50
- package/src/helper/get_id_from_title.ts +33 -33
- package/src/helper/mongo_helper.ts +29 -29
- package/src/helper/openai_helper.ts +20 -20
- package/src/helper/qdrant_db_methods.ts +77 -77
- package/src/helper/schema_helper/build_card_schema.ts +74 -98
- package/src/helper/schema_helper/build_classify_summarize_schema.ts +43 -43
- package/src/helper/schema_helper/build_concept_facts_schema.ts +45 -31
- package/src/helper/schema_helper/build_summary_schema.ts +43 -32
- package/src/index.ts +71 -73
- package/src/logger.ts +65 -65
- package/src/parse/parse_card/parse_cloze_card.ts +146 -146
- package/src/parse/parse_card/parse_flash_cards.ts +42 -42
- package/src/parse/parse_card/parse_match_card.ts +104 -104
- package/src/parse/parse_card/parse_mcq_card.ts +114 -114
- package/src/parse/parse_card_response.ts +197 -197
- package/src/parse/parse_source_content.ts +212 -212
- package/src/services/get_prompts.ts +164 -112
- package/src/services/open_ai_service.ts +89 -89
- package/src/services/qdrant_service.ts +10 -10
- package/src/types/base_param_type.ts +13 -13
- package/src/types/mongo_concept_fact_type.ts +12 -12
- package/src/types/parsed_card_type.ts +39 -39
- package/src/types/raw_card_response_types/generated_card_response_type.ts +59 -59
- package/src/types/source_taxonomy_type.ts +24 -24
- package/src/typology-parsed-response.ts +1932 -1932
- package/src/typology_gen/generate_concept_facts.ts +180 -169
- package/src/typology_gen/generate_typology.ts +203 -189
- package/src/typology_gen/summarize.ts +176 -164
- package/src/utils/distributed_quote_restoration.ts +80 -80
- package/src/utils/generate_args.ts +29 -29
- package/src/utils/parse_openai_response.ts +19 -19
- package/src/utils/sanitize_strings.ts +65 -65
- package/tsconfig.json +16 -16
- package/dist/constants/default_generation_variables.d.ts +0 -3
- package/dist/constants/default_generation_variables.d.ts.map +0 -1
- package/dist/constants/default_generation_variables.js +0 -580
- package/dist/constants/default_generation_variables.js.map +0 -1
- package/dist/services/prompts_test.d.ts +0 -10
- package/dist/services/prompts_test.d.ts.map +0 -1
- package/dist/services/prompts_test.js +0 -227
- package/dist/services/prompts_test.js.map +0 -1
- package/dist/types/generation_variables_schema.d.ts +0 -14
- package/dist/types/generation_variables_schema.d.ts.map +0 -1
- package/dist/types/generation_variables_schema.js +0 -3
- package/dist/types/generation_variables_schema.js.map +0 -1
- package/dist/utils/test.d.ts +0 -2
- package/dist/utils/test.d.ts.map +0 -1
- package/dist/utils/test.js +0 -5
- package/dist/utils/test.js.map +0 -1
- package/src/constants/default_generation_variables.ts +0 -624
- package/src/types/generation_variables_schema.ts +0 -16
|
@@ -1,974 +1,974 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.returnFields = returnFields;
|
|
4
|
-
exports.returnSourceData = returnSourceData;
|
|
5
|
-
exports.returnHeadings = returnHeadings;
|
|
6
|
-
exports.returnCardResponse = returnCardResponse;
|
|
7
|
-
const sourceString = [
|
|
8
|
-
{
|
|
9
|
-
block_type: "image",
|
|
10
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/F%C3%BCller-tinte_hg.jpg",
|
|
11
|
-
img_caption: "Bottles of ink from Germany",
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
block_type: "image",
|
|
15
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/%D7%A7%D7%9C%D7%A3%2C_%D7%A0%D7%95%D7%A6%D7%94_%D7%95%D7%93%D7%99%D7%95.jpg",
|
|
16
|
-
img_caption: "Writing ink and a quill",
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
block_type: "paragraph",
|
|
20
|
-
content: "**Ink** is a [[Gel|gel|0|wiki]], [[Sol_(colloid)|sol|1|wiki]], or [[Solution_(chemistry)|solution|2|wiki]] that contains at least one [[Colorant|colorant|3|wiki]], such as a [[Dye|dye|4|wiki]] or [[Pigment|pigment|5|wiki]], and is used to color a surface to produce an [[Image|image|6|wiki]], [[Writing|text|7|wiki]], or [[Design|design|8|wiki]]. Ink is used for [[Drawing|drawing|9|wiki]] or [[Writing|writing|10|wiki]] with a [[Pen|pen|11|wiki]], [[Brush|brush|12|wiki]], [[Reed_pen|reed pen|13|wiki]], or [[Quill|quill|14|wiki]]. Thicker inks, in paste form, are used extensively in [[Letterpress|letterpress|15|wiki]] and [[Lithographic|lithographic|16|wiki]] [[Printing|printing|17|wiki]].",
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
block_type: "paragraph",
|
|
24
|
-
content: "Ink can be a complex medium, composed of [[Solvent|solvents|18|wiki]], pigments, [[Dye|dyes|19|wiki]], [[Resin|resins|20|wiki]], [[Lubricant|lubricants|21|wiki]], [[Solubilizer|solubilizers|22|wiki]], [[Surfactant|surfactants|23|wiki]], [[Suspended_solids|particulate matter|24|wiki]], [[Fluorescence|fluorescents|25|wiki]], and other materials. The components of inks serve many purposes; the ink's carrier, colorants, and other additives affect the flow and thickness of the ink and its dry appearance.",
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
block_type: "heading",
|
|
28
|
-
content: "History",
|
|
29
|
-
heading_level: 1,
|
|
30
|
-
children: [
|
|
31
|
-
{
|
|
32
|
-
block_type: "image",
|
|
33
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Ganesha_ink.jpg",
|
|
34
|
-
img_caption: "Ink drawing of Ganesha under an umbrella (early 19th century). Ink, called masi, an admixture of several chemical components, has been used in India since at least the 4th century BC. The practice of writing with ink and a sharp pointed needle was common in early South India. Several Jain sutras in India were compiled in ink.",
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
block_type: "image",
|
|
38
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Oak_galls_and_iron(II)_sulfate_-_California_State_Archives.jpg",
|
|
39
|
-
img_caption: "Oak galls and iron(II) sulfate",
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
block_type: "paragraph",
|
|
43
|
-
content: "Many ancient cultures around the world have independently discovered and formulated inks due to the need to write and draw. The recipes and techniques for the production of ink are derived from archaeological analyses or from written texts itself. The earliest inks from all civilizations are believed to have been made with *[[Lampblack|lampblack|26|wiki]]*, a kind of [[Soot|soot|27|wiki]], easily collected as a by-product of fire.",
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
block_type: "paragraph",
|
|
47
|
-
content: "Ink was used in [[Ancient_Egypt|Ancient Egypt|28|wiki]] for writing and drawing on [[Papyrus|papyrus|29|wiki]] from at least the 26th century BC. Egyptian red and black inks included [[Iron|iron|30|wiki]] and [[Ocher|ocher|31|wiki]] as pigments, in addition to [[Phosphate|phosphate|32|wiki]], [[Sulfate|sulfate|33|wiki]], [[Chloride|chloride|34|wiki]], and [[Carboxylate|carboxylate|35|wiki]] ions, with [[Lead|lead|36|wiki]] also used as a drier.",
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
block_type: "paragraph",
|
|
51
|
-
content: "The earliest Chinese inks may date to four millennia ago, to the [[List_of_Neolithic_cultures_of_China|Chinese Neolithic Period|37|wiki]]. These included plant, animal, and mineral inks, based on such materials as [[Graphite|graphite|38|wiki]]; these were ground with water and applied with [[Ink_brush|ink brushes|39|wiki]]. Direct evidence for the earliest Chinese inks, similar to modern [[Inkstick|inksticks|40|wiki]], is found around 256 BC, in the end of the [[Warring_States_period|Warring States period|41|wiki]]; being produced from soot and [[Animal_glue|animal glue|42|wiki]]. The preferred inks for drawing or painting on paper or silk are produced from the resin of the pine trees between 50 and 100 years old. The Chinese inkstick is produced with a fish glue, whereas Japanese glue (膠 *nikawa*) is from cow or stag.",
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
block_type: "paragraph",
|
|
55
|
-
content: "[[India_ink|India ink|43|wiki]] was invented in China, though materials were often traded from India, hence the name. The traditional Chinese method of making the ink was to grind a mixture of hide glue, [[Carbon_black|carbon black|44|wiki]], lampblack, and [[Bone_char|bone black|45|wiki]] pigment with a [[Pestle_and_mortar|pestle and mortar|46|wiki]], then pour it into a ceramic dish to dry. To use the dry mixture, a wet brush would be applied until it reliquified. The manufacture of India ink was well-established by the [[Cao_Wei|Cao Wei|47|wiki]] dynasty (220–265 AD). Indian documents written in [[Kharosthi|Kharosthi|48|wiki]] with ink have been unearthed in [[Xinjiang|Xinjiang|49|wiki]]. The practice of writing with ink and a sharp pointed needle was common in early South India. Several [[Buddhism|Buddhist|50|wiki]] and Jain sutras in India were compiled in ink.",
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
block_type: "paragraph",
|
|
59
|
-
content: '[[Cephalopod_ink|Cephalopod ink|51|wiki]], known as [[Sepia_(color)|sepia|52|wiki]], turns from dark blue-black to brown on drying, and was used as an ink in the Graeco-Roman period and subsequently. Black [[Atramentum|atramentum|53|wiki]] was also used in [[Ancient_Rome|ancient Rome|54|wiki]]; in an article for *[[The_Christian_Science_Monitor|The Christian Science Monitor|55|wiki]]*, Sharon J. Huntington describes these other historical inks: "About 1,600 years ago, a popular ink recipe was created. The recipe was used for centuries. Iron salts, such as ferrous sulfate (made by treating iron with sulfuric acid), were mixed with tannin from gallnuts (they grow on trees) and a thickener. When first put to paper, this ink is bluish-black. Over time it fades to a dull brown."',
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
block_type: "paragraph",
|
|
63
|
-
content: '"Scribes in medieval Europe (about AD 800 to 1500) wrote principally on parchment or vellum. One 12th century ink recipe called for hawthorn branches to be cut in the spring and left to dry. Then the bark was pounded from the branches and soaked in water for eight days. The water was boiled until it thickened and turned black. Wine was added during boiling. The ink was poured into special bags and hung in the sun. Once dried, the mixture was mixed with wine and iron salt over a fire to make the final ink."',
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
block_type: "paragraph",
|
|
67
|
-
content: "The reservoir pen, which may have been the first [[Fountain_pen|fountain pen|56|wiki]], dates back to 953, when [[Al_Muizz|Ma'ād al-Mu'izz|57|wiki]], the [[Caliph|caliph|58|wiki]] of Egypt, demanded a pen that would not stain his hands or clothes, and was provided with a pen that held ink in a reservoir.",
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
block_type: "paragraph",
|
|
71
|
-
content: "In the 15th century, a new type of ink had to be developed in Europe for the [[Printing_press|printing press|59|wiki]] by [[Johannes_Gutenberg|Johannes Gutenberg|60|wiki]]. According to Martyn Lyons in his book *Books: A Living History*, Gutenberg's dye was indelible, oil-based, and made from the soot of lamps (lamp-black) mixed with [[Varnish|varnish|61|wiki]] and egg white. Two types of ink were prevalent at the time: the Greek and Roman writing ink (soot, glue, and water) and the 12th century variety composed of ferrous sulfate, gall, gum, and water. Neither of these handwriting inks could adhere to printing surfaces without creating blurs. Eventually an oily, [[Varnish|varnish|62|wiki]]-like ink made of soot, [[Turpentine|turpentine|63|wiki]], and walnut oil was created specifically for the printing press.",
|
|
72
|
-
},
|
|
73
|
-
],
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
block_type: "heading",
|
|
77
|
-
content: "Types",
|
|
78
|
-
heading_level: 1,
|
|
79
|
-
children: [
|
|
80
|
-
{
|
|
81
|
-
block_type: "image",
|
|
82
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Tintenstrich-detail_2.jpg",
|
|
83
|
-
img_caption: "Magnified line drawn by a fountain pen.",
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
block_type: "paragraph",
|
|
87
|
-
content: "",
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
block_type: "paragraph",
|
|
91
|
-
content: "Ink formulas vary, but commonly involve two components:",
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
block_type: "paragraph",
|
|
95
|
-
content: "Inks generally fall into four classes:",
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
block_type: "list",
|
|
99
|
-
content: [
|
|
100
|
-
{
|
|
101
|
-
block_type: "list_item",
|
|
102
|
-
list_type: "ordered",
|
|
103
|
-
marker: "1.",
|
|
104
|
-
content: "Colorants",
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
block_type: "list_item",
|
|
108
|
-
list_type: "ordered",
|
|
109
|
-
marker: "2.",
|
|
110
|
-
content: "Vehicles (binders)",
|
|
111
|
-
},
|
|
112
|
-
],
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
block_type: "list",
|
|
116
|
-
content: [
|
|
117
|
-
{
|
|
118
|
-
block_type: "list_item",
|
|
119
|
-
list_type: "ordered",
|
|
120
|
-
marker: "1.",
|
|
121
|
-
content: "Aqueous",
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
block_type: "list_item",
|
|
125
|
-
list_type: "ordered",
|
|
126
|
-
marker: "2.",
|
|
127
|
-
content: "Liquid",
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
block_type: "list_item",
|
|
131
|
-
list_type: "ordered",
|
|
132
|
-
marker: "3.",
|
|
133
|
-
content: "Paste",
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
block_type: "list_item",
|
|
137
|
-
list_type: "ordered",
|
|
138
|
-
marker: "4.",
|
|
139
|
-
content: "Powder",
|
|
140
|
-
},
|
|
141
|
-
],
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
block_type: "heading",
|
|
145
|
-
content: "Colorants",
|
|
146
|
-
heading_level: 2,
|
|
147
|
-
children: [
|
|
148
|
-
{
|
|
149
|
-
block_type: "heading",
|
|
150
|
-
content: "Pigments",
|
|
151
|
-
heading_level: 3,
|
|
152
|
-
children: [
|
|
153
|
-
{
|
|
154
|
-
block_type: "paragraph",
|
|
155
|
-
content: "Pigment inks are used more frequently than dyes because they are more color-fast, but they are also more expensive, less consistent in color, and have less of a [[Gamut|color range|64|wiki]] than dyes. Pigments are solid, opaque particles suspended in ink to provide color. Pigment molecules typically link together in [[Crystal|crystalline|65|wiki]] structures that are 0.1–2 [[Micrometre|μm|66|wiki]] in size and comprise 5–30 percent of the ink volume. Qualities such as [[Hue|hue|67|wiki]], [[Saturation_(color_theory)|saturation|68|wiki]], and [[Lightness_(color)|lightness|69|wiki]] vary depending on the source and type of pigment.Solvent-based inks are widely used for high-speed printing and applications that require quick drying times. And the inclusion of TiO2 powder provides superior coverage and vibrant colors.",
|
|
156
|
-
},
|
|
157
|
-
],
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
block_type: "heading",
|
|
161
|
-
content: "Dyes",
|
|
162
|
-
heading_level: 3,
|
|
163
|
-
children: [
|
|
164
|
-
{
|
|
165
|
-
block_type: "paragraph",
|
|
166
|
-
content: "Dye-based inks are generally much stronger than pigment-based inks and can produce much more color of a given density per unit of mass. However, because dyes are dissolved in the liquid phase, they have a tendency to soak into paper, potentially allowing the ink to bleed at the edges of an image.",
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
block_type: "paragraph",
|
|
170
|
-
content: "To circumvent this problem, dye-based inks are made with solvents that dry rapidly or are used with quick-drying methods of printing, such as blowing hot air on the fresh print. Other methods include harder [[Paper|paper|70|wiki]] [[Sizing|sizing|71|wiki]] and more specialized paper coatings. The latter is particularly suited to inks used in non-industrial settings (which must conform to tighter toxicity and emission controls), such as [[Inkjet_printer|inkjet printer|72|wiki]] inks. Another technique involves coating the paper with a charged coating. If the dye has the opposite charge, it is attracted to and retained by this coating, while the solvent soaks into the paper. [[Cellulose|Cellulose|73|wiki]], the wood-derived material most paper is made of, is naturally charged, and so a compound that complexes with both the dye and the paper's surface aids retention at the surface. Such a compound is commonly used in ink-jet printing inks.",
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
block_type: "paragraph",
|
|
174
|
-
content: "An additional advantage of dye-based ink systems is that the dye [[Molecule|molecules|74|wiki]] can interact with other ink ingredients, potentially allowing greater benefit as compared to pigmented inks from [[Optical_brightener|optical brighteners|75|wiki]] and color-enhancing agents designed to increase the intensity and appearance of dyes.",
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
block_type: "paragraph",
|
|
178
|
-
content: "Dye-based inks can be used for anti-counterfeit purposes and can be found in some gel inks, fountain pen inks, and inks used for paper currency. These inks react with cellulose to bring about a permanent color change. Dye based inks are used to color hair.",
|
|
179
|
-
},
|
|
180
|
-
],
|
|
181
|
-
},
|
|
182
|
-
],
|
|
183
|
-
},
|
|
184
|
-
],
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
block_type: "heading",
|
|
188
|
-
content: "Health and environmental aspects",
|
|
189
|
-
heading_level: 1,
|
|
190
|
-
children: [
|
|
191
|
-
{
|
|
192
|
-
block_type: "paragraph",
|
|
193
|
-
content: "There is a misconception that ink is non-toxic even if swallowed. Once ingested, ink can be hazardous to one's health. Certain inks, such as those used in digital printers, and even those found in a common pen can be harmful. Though ink does not easily cause death, repeated skin contact or ingestion can cause effects such as severe headaches, skin irritation, or nervous system damage. These effects can be caused by solvents, or by pigment ingredients such as *p*-Anisidine, which helps create some inks' color and shine.",
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
block_type: "paragraph",
|
|
197
|
-
content: "Three main environmental issues with ink are:",
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
block_type: "paragraph",
|
|
201
|
-
content: "Some regulatory bodies have set standards for the amount of heavy metals in ink. There is a trend toward [[Vegetable_oil|vegetable oils|76|wiki]] rather than [[Petroleum_oil|petroleum oils|77|wiki]] in recent years in response to a demand for better [[Sustainability|environmental sustainability|78|wiki]] performance.",
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
block_type: "paragraph",
|
|
205
|
-
content: "Ink uses up non-renewable oils and metals, which has a negative impact on the environment.",
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
block_type: "list",
|
|
209
|
-
content: [
|
|
210
|
-
{
|
|
211
|
-
block_type: "list_item",
|
|
212
|
-
list_type: "ordered",
|
|
213
|
-
marker: "1.",
|
|
214
|
-
content: "[[Heavy_metal_(chemistry)|Heavy metals|79|wiki]]",
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
block_type: "list_item",
|
|
218
|
-
list_type: "ordered",
|
|
219
|
-
marker: "2.",
|
|
220
|
-
content: "Non-renewable oils",
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
block_type: "list_item",
|
|
224
|
-
list_type: "ordered",
|
|
225
|
-
marker: "3.",
|
|
226
|
-
content: "[[Volatile_organic_compound|Volatile organic compounds|80|wiki]]",
|
|
227
|
-
},
|
|
228
|
-
],
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
block_type: "heading",
|
|
232
|
-
content: "Carbon",
|
|
233
|
-
heading_level: 2,
|
|
234
|
-
children: [
|
|
235
|
-
{
|
|
236
|
-
block_type: "image",
|
|
237
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Inkstick.jpg",
|
|
238
|
-
img_caption: "Chinese inkstick; carbon-based and made from soot and animal glue",
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
block_type: "paragraph",
|
|
242
|
-
content: "Carbon inks were commonly made from lampblack or soot and a binding agent such as [[Gum_arabic|gum arabic|81|wiki]] or [[Animal_glue|animal glue|82|wiki]]. The binding agent keeps carbon particles in suspension and adhered to paper. Carbon particles do not fade over time even when bleached or when in sunlight. One benefit is that carbon ink does not harm paper. Over time, the ink is chemically stable and therefore does not threaten the paper's strength. Despite these benefits, carbon ink is not ideal for permanence and ease of preservation. Carbon ink tends to smudge in humid environments and can be washed off surfaces. The best method of preserving a document written in carbon ink is to store it in a dry environment (Barrow 1972).",
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
block_type: "paragraph",
|
|
246
|
-
content: "Recently, carbon inks made from carbon nanotubes have been successfully created. They are similar in composition to traditional inks in that they use a polymer to suspend the carbon nanotubes. These inks can be used in inkjet printers and produce electrically conductive patterns.",
|
|
247
|
-
},
|
|
248
|
-
],
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
block_type: "heading",
|
|
252
|
-
content: "Iron gall (common ink)",
|
|
253
|
-
heading_level: 2,
|
|
254
|
-
children: [
|
|
255
|
-
{
|
|
256
|
-
block_type: "paragraph",
|
|
257
|
-
content: "Iron gall inks became prominent in the early 12th century; they were used for centuries and were widely thought to be the best type of ink. However, iron gall ink is corrosive and damages paper over time (Waters 1940). Items containing this ink can become brittle and the writing fades to brown. The original scores of [[Johann_Sebastian_Bach|Johann Sebastian Bach|83|wiki]] are threatened by the destructive properties of iron gall ink. The majority of his works are held by the German State Library, and about 25% of those are in advanced stages of decay (American Libraries 2000). The rate at which the writing fades is based on several factors, such as proportions of ink ingredients, amount deposited on the paper, and paper composition (Barrow 1972:16). Corrosion is caused by acid catalyzed hydrolysis and iron(II)-catalysed oxidation of cellulose (Rouchon-Quillet 2004:389).",
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
block_type: "paragraph",
|
|
261
|
-
content: "Treatment is a controversial subject. No treatment undoes damage already caused by acidic ink. Deterioration can only be stopped or slowed. Some think it best not to treat the item at all for fear of the consequences. Others believe that non-aqueous procedures are the best solution. Yet others think an aqueous procedure may preserve items written with iron gall ink. Aqueous treatments include distilled water at different temperatures, calcium hydroxide, calcium bicarbonate, magnesium carbonate, magnesium bicarbonate, and calcium hyphenate. There are many possible side effects from these treatments. There can be mechanical damage, which further weakens the paper. Paper color or ink color may change, and ink may bleed. Other consequences of aqueous treatment are a change of ink texture or formation of plaque on the surface of the ink (Reibland & de Groot 1999).",
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
block_type: "paragraph",
|
|
265
|
-
content: "Iron gall inks require storage in a stable environment, because fluctuating [[Relative_humidity|relative humidity|84|wiki]] increases the rate that formic acid, acetic acid, and furan derivatives form in the material the ink was used on. Sulfuric acid acts as a catalyst to cellulose hydrolysis, and iron (II) sulfate acts as a catalyst to cellulose oxidation. These chemical reactions physically weaken the paper, causing [[Brittle_Books_Program|brittleness|85|wiki]].",
|
|
266
|
-
},
|
|
267
|
-
],
|
|
268
|
-
},
|
|
269
|
-
],
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
block_type: "heading",
|
|
273
|
-
content: "Indelible ink",
|
|
274
|
-
heading_level: 1,
|
|
275
|
-
children: [
|
|
276
|
-
{
|
|
277
|
-
block_type: "image",
|
|
278
|
-
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Un_%C3%A9lecteur_avec_l'_encre_ind%C3%A9l%C3%A9bile_au_pouce%2C_apr%C3%A8s_son_vote_dans_un_centre_dans_la_commune_de_la_Tshopo_%C3%A0_Kisangani_(6418380139).jpg",
|
|
279
|
-
img_caption: "A voter's thumb stained with indelible ink",
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
block_type: "paragraph",
|
|
283
|
-
content: "",
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
block_type: "paragraph",
|
|
287
|
-
content: '*Indelible* means "un-removable". Some types of indelible ink have a very short shelf life because of the quickly evaporating solvents used. India, Mexico, Indonesia, Malaysia and other developing countries have used indelible ink in the form of [[Electoral_stain|electoral stain|86|wiki]] to prevent [[Electoral_fraud|electoral fraud|87|wiki]]. Election ink based on [[Silver_nitrate|silver nitrate|88|wiki]] was first applied in the [[1962_Indian_general_election|1962 Indian general election|89|wiki]], after being developed at the [[National_Physical_Laboratory_of_India|National Physical Laboratory of India|90|wiki]].',
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
block_type: "paragraph",
|
|
291
|
-
content: 'The election commission in India has used indelible ink for many elections. Indonesia used it in its election in 2014. In Mali, the ink is applied to the fingernail. Indelible ink itself is not infallible as it can be used to commit electoral [[Fraud|fraud|91|wiki]] by marking opponent party members before they have chances to cast their votes. There are also reports of "indelible" ink washing off voters\' fingers in Afghanistan.',
|
|
292
|
-
},
|
|
293
|
-
],
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
block_type: "heading",
|
|
297
|
-
content: "See also",
|
|
298
|
-
heading_level: 1,
|
|
299
|
-
children: [
|
|
300
|
-
{
|
|
301
|
-
block_type: "paragraph",
|
|
302
|
-
content: "",
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
block_type: "list",
|
|
306
|
-
content: [
|
|
307
|
-
{
|
|
308
|
-
block_type: "list_item",
|
|
309
|
-
list_type: "ordered",
|
|
310
|
-
marker: "1.",
|
|
311
|
-
content: "[[Blue_Wool_Scale|Blue Wool Scale|92|wiki]]",
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
block_type: "list_item",
|
|
315
|
-
list_type: "ordered",
|
|
316
|
-
marker: "2.",
|
|
317
|
-
content: "[[De-inked_pulp|De-inked pulp|93|wiki]]",
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
block_type: "list_item",
|
|
321
|
-
list_type: "ordered",
|
|
322
|
-
marker: "3.",
|
|
323
|
-
content: "[[Election_ink|Election ink|94|wiki]]",
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
block_type: "list_item",
|
|
327
|
-
list_type: "ordered",
|
|
328
|
-
marker: "4.",
|
|
329
|
-
content: "[[Fountain_pen_ink|Fountain pen ink|95|wiki]]",
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
block_type: "list_item",
|
|
333
|
-
list_type: "ordered",
|
|
334
|
-
marker: "5.",
|
|
335
|
-
content: "[[Gel_pen|Gel pen|96|wiki]]",
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
block_type: "list_item",
|
|
339
|
-
list_type: "ordered",
|
|
340
|
-
marker: "6.",
|
|
341
|
-
content: "[[Ink_eraser|Ink eraser|97|wiki]]",
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
block_type: "list_item",
|
|
345
|
-
list_type: "ordered",
|
|
346
|
-
marker: "7.",
|
|
347
|
-
content: "[[Inkjet_printing|Inkjet printing|98|wiki]]",
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
block_type: "list_item",
|
|
351
|
-
list_type: "ordered",
|
|
352
|
-
marker: "8.",
|
|
353
|
-
content: "[[Ecofont|Ecofont|99|wiki]], an inksaving typeface",
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
block_type: "list_item",
|
|
357
|
-
list_type: "ordered",
|
|
358
|
-
marker: "9.",
|
|
359
|
-
content: "[[Invisible_ink|Invisible ink|100|wiki]]",
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
block_type: "list_item",
|
|
363
|
-
list_type: "ordered",
|
|
364
|
-
marker: "10.",
|
|
365
|
-
content: "[[Lightfastness|Lightfastness|101|wiki]]",
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
block_type: "list_item",
|
|
369
|
-
list_type: "ordered",
|
|
370
|
-
marker: "11.",
|
|
371
|
-
content: "[[Pharmaceutical_ink|Pharmaceutical ink|102|wiki]]",
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
block_type: "list_item",
|
|
375
|
-
list_type: "ordered",
|
|
376
|
-
marker: "12.",
|
|
377
|
-
content: "[[Preservation_(library_and_archival_science)|Preservation (library and archival science)|103|wiki]]",
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
block_type: "list_item",
|
|
381
|
-
list_type: "ordered",
|
|
382
|
-
marker: "13.",
|
|
383
|
-
content: "[[Preservation_of_illuminated_manuscripts|Preservation of illuminated manuscripts|104|wiki]]",
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
block_type: "list_item",
|
|
387
|
-
list_type: "ordered",
|
|
388
|
-
marker: "14.",
|
|
389
|
-
content: "[[Soy_ink|Soy ink|105|wiki]]",
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
block_type: "list_item",
|
|
393
|
-
list_type: "ordered",
|
|
394
|
-
marker: "15.",
|
|
395
|
-
content: "[[Squid_ink|Squid ink|106|wiki]]",
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
block_type: "list_item",
|
|
399
|
-
list_type: "ordered",
|
|
400
|
-
marker: "16.",
|
|
401
|
-
content: "[[Stark's_ink|Stark's ink|107|wiki]]",
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
block_type: "list_item",
|
|
405
|
-
list_type: "ordered",
|
|
406
|
-
marker: "17.",
|
|
407
|
-
content: "[[Tattoo_ink|Tattoo ink|108|wiki]]",
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
block_type: "list_item",
|
|
411
|
-
list_type: "ordered",
|
|
412
|
-
marker: "18.",
|
|
413
|
-
content: "[[Toner_(printing)|Toner (printing)|109|wiki]]",
|
|
414
|
-
},
|
|
415
|
-
],
|
|
416
|
-
},
|
|
417
|
-
],
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
block_type: "heading",
|
|
421
|
-
content: "References",
|
|
422
|
-
heading_level: 1,
|
|
423
|
-
children: [],
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
block_type: "heading",
|
|
427
|
-
content: "Sources",
|
|
428
|
-
heading_level: 1,
|
|
429
|
-
children: [
|
|
430
|
-
{
|
|
431
|
-
block_type: "paragraph",
|
|
432
|
-
content: "",
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
block_type: "list",
|
|
436
|
-
content: [
|
|
437
|
-
{
|
|
438
|
-
block_type: "list_item",
|
|
439
|
-
list_type: "ordered",
|
|
440
|
-
marker: "1.",
|
|
441
|
-
content: 'Ainsworth, Mitchell, C., "Inks and Their Composition and Manufacture", Charles Griffin and Company Ltd, 1904.',
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
block_type: "list_item",
|
|
445
|
-
list_type: "ordered",
|
|
446
|
-
marker: "2.",
|
|
447
|
-
content: "Banerji, Sures Chandra (1989). *A Companion to Sanskrit Literature*. Motilal Banarsidass. ISBN 81-208-0063-X.",
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
block_type: "list_item",
|
|
451
|
-
list_type: "ordered",
|
|
452
|
-
marker: "3.",
|
|
453
|
-
content: 'Martín-Gil J., Ramos-Sánchez MC, Martín-Gil FJ and José-Yacamán M. "Chemical composition of a fountain pen ink". *Journal of Chemical Education*, 2006, 83, 1476–78.',
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
block_type: "list_item",
|
|
457
|
-
list_type: "ordered",
|
|
458
|
-
marker: "4.",
|
|
459
|
-
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
460
|
-
},
|
|
461
|
-
],
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
block_type: "list",
|
|
465
|
-
content: [
|
|
466
|
-
{
|
|
467
|
-
block_type: "list_item",
|
|
468
|
-
list_type: "ordered",
|
|
469
|
-
marker: "1.",
|
|
470
|
-
content: 'Martín-Gil J., Ramos-Sánchez MC, Martín-Gil FJ and José-Yacamán M. "Chemical composition of a fountain pen ink". *Journal of Chemical Education*, 2006, 83, 1476–78.',
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
block_type: "list_item",
|
|
474
|
-
list_type: "ordered",
|
|
475
|
-
marker: "2.",
|
|
476
|
-
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
477
|
-
},
|
|
478
|
-
],
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
block_type: "list",
|
|
482
|
-
content: [
|
|
483
|
-
{
|
|
484
|
-
block_type: "list_item",
|
|
485
|
-
list_type: "ordered",
|
|
486
|
-
marker: "1.",
|
|
487
|
-
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
488
|
-
},
|
|
489
|
-
],
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
block_type: "list",
|
|
493
|
-
content: [
|
|
494
|
-
{
|
|
495
|
-
block_type: "list_item",
|
|
496
|
-
list_type: "ordered",
|
|
497
|
-
marker: "1.",
|
|
498
|
-
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
499
|
-
},
|
|
500
|
-
],
|
|
501
|
-
},
|
|
502
|
-
],
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
block_type: "heading",
|
|
506
|
-
content: "Further reading",
|
|
507
|
-
heading_level: 1,
|
|
508
|
-
children: [
|
|
509
|
-
{
|
|
510
|
-
block_type: "paragraph",
|
|
511
|
-
content: "",
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
block_type: "list",
|
|
515
|
-
content: [
|
|
516
|
-
{
|
|
517
|
-
block_type: "list_item",
|
|
518
|
-
list_type: "ordered",
|
|
519
|
-
marker: "1.",
|
|
520
|
-
content: "Cueppers, Christoph (1989). \"On the Manufacture of Ink.\" *Ancient Nepal – Journal of the Department of Archaeology*, Number 113, August–September 1989, pp. 1–7. [The Tibetan text and translation of a section of the work called, *Bzo gnas nyer mkho'i za ma tog* by 'Jam-mgon 'Ju Mi-pham-rgya-mtsho (1846–1912) describing various traditional Tibetan techniques of making inks from different sources of soot, and from earth, [[Puffball|puffballs|110|wiki]], dung, *ser-sha* – a yellow fungus, and the fruit of *tsi dra ka* (*Ricinus communis*).]",
|
|
521
|
-
},
|
|
522
|
-
],
|
|
523
|
-
},
|
|
524
|
-
],
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
block_type: "heading",
|
|
528
|
-
content: "External links",
|
|
529
|
-
heading_level: 1,
|
|
530
|
-
children: [
|
|
531
|
-
{
|
|
532
|
-
block_type: "paragraph",
|
|
533
|
-
content: "",
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
block_type: "list",
|
|
537
|
-
content: [
|
|
538
|
-
{
|
|
539
|
-
block_type: "list_item",
|
|
540
|
-
list_type: "ordered",
|
|
541
|
-
marker: "1.",
|
|
542
|
-
content: "Forty Centuries of Ink (David N. Carvalho); A detailed online textbook (archived 8 June 2003)",
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
block_type: "list_item",
|
|
546
|
-
list_type: "ordered",
|
|
547
|
-
marker: "2.",
|
|
548
|
-
content: "Roman ink article by Alexander Allen In Smith's Dictionary Greek and Roman Antiquities (1875), in LacusCurtius",
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
block_type: "list_item",
|
|
552
|
-
list_type: "ordered",
|
|
553
|
-
marker: "3.",
|
|
554
|
-
content: "Ancient and Modern Ink Recipes (David N. Carvalho)",
|
|
555
|
-
},
|
|
556
|
-
{
|
|
557
|
-
block_type: "list_item",
|
|
558
|
-
list_type: "ordered",
|
|
559
|
-
marker: "4.",
|
|
560
|
-
content: "[Gorgeous Portrayal Of How Ink Is Made](http://www.huffingtonpost.com/2010/10/01/gorgeous-portrayal-of-how_n_747665.html?view=print) – video at *[[The_Huffington_Post|The Huffington Post|111|wiki]]*",
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
block_type: "list_item",
|
|
564
|
-
list_type: "ordered",
|
|
565
|
-
marker: "5.",
|
|
566
|
-
content: '["A Light Note on the Science of Writing and Inks"](http://www.wdl.org/en/item/3176) is a manuscript, in Arabic, from 1852. It discusses the process of making inks.',
|
|
567
|
-
},
|
|
568
|
-
],
|
|
569
|
-
},
|
|
570
|
-
],
|
|
571
|
-
},
|
|
572
|
-
];
|
|
573
|
-
const headings = [
|
|
574
|
-
"History",
|
|
575
|
-
"Types",
|
|
576
|
-
"Health and environmental aspects",
|
|
577
|
-
"Indelible ink",
|
|
578
|
-
"See also",
|
|
579
|
-
"References",
|
|
580
|
-
"Sources",
|
|
581
|
-
"Further reading",
|
|
582
|
-
"External links",
|
|
583
|
-
];
|
|
584
|
-
function returnFields() {
|
|
585
|
-
return [
|
|
586
|
-
"Sciences",
|
|
587
|
-
"Technology & Engineering",
|
|
588
|
-
"Humanities & Cultural Studies",
|
|
589
|
-
"Social Sciences & Global Studies",
|
|
590
|
-
"Business & Management",
|
|
591
|
-
"Health & Medicine",
|
|
592
|
-
"Environmental Studies & Earth Sciences",
|
|
593
|
-
"Education, Learning & Personal Development",
|
|
594
|
-
"Creative & Performing Arts",
|
|
595
|
-
"Law, Governance & Ethics",
|
|
596
|
-
"Recreation, Lifestyle & Practical Skills",
|
|
597
|
-
"Technology & Media Literacy",
|
|
598
|
-
"Philosophy & Critical Thinking",
|
|
599
|
-
"Space & Astronomical Sciences",
|
|
600
|
-
"Agriculture & Food Sciences",
|
|
601
|
-
"Trades & Craftsmanship",
|
|
602
|
-
"Reference & Indexing",
|
|
603
|
-
"Other",
|
|
604
|
-
];
|
|
605
|
-
}
|
|
606
|
-
const sourceContent = {
|
|
607
|
-
type: "source",
|
|
608
|
-
title: "Ink",
|
|
609
|
-
headings: headings,
|
|
610
|
-
content: sourceString,
|
|
611
|
-
fields: returnFields(),
|
|
612
|
-
// taxonomy: null,
|
|
613
|
-
};
|
|
614
|
-
function returnSourceData() {
|
|
615
|
-
return sourceContent;
|
|
616
|
-
}
|
|
617
|
-
function returnHeadings() {
|
|
618
|
-
return headings;
|
|
619
|
-
}
|
|
620
|
-
function returnCardResponse() {
|
|
621
|
-
return cardResponse;
|
|
622
|
-
}
|
|
623
|
-
let cardResponse = {
|
|
624
|
-
status_code: 200,
|
|
625
|
-
metadata: {},
|
|
626
|
-
usage_data: {
|
|
627
|
-
prompt_tokens: 23234,
|
|
628
|
-
completion_tokens: 2796,
|
|
629
|
-
total_tokens: 26030,
|
|
630
|
-
},
|
|
631
|
-
generated_content: {
|
|
632
|
-
test_cards: [
|
|
633
|
-
{
|
|
634
|
-
type: "mcq",
|
|
635
|
-
card_content: {
|
|
636
|
-
prompt: "Which term is used to refer to the largest branch of Islam, followed by 85-90% of Muslims worldwide?",
|
|
637
|
-
choices: [
|
|
638
|
-
{ choice: "Sunni Islam", is_correct: true },
|
|
639
|
-
{ choice: "Shia Islam", is_correct: false },
|
|
640
|
-
{ choice: "Kharijites", is_correct: false },
|
|
641
|
-
{ choice: "Ibadi", is_correct: false },
|
|
642
|
-
],
|
|
643
|
-
},
|
|
644
|
-
concepts: [
|
|
645
|
-
{
|
|
646
|
-
concept_text: "Definition of Sunni Islam",
|
|
647
|
-
reference: "Sunni Islam#Terminology",
|
|
648
|
-
},
|
|
649
|
-
],
|
|
650
|
-
facts: [
|
|
651
|
-
{
|
|
652
|
-
fact_text: "85-90% of Muslims are Sunni.",
|
|
653
|
-
reference: "Sunni Islam#Terminology",
|
|
654
|
-
},
|
|
655
|
-
],
|
|
656
|
-
bloom_level: 1,
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
type: "mcq",
|
|
660
|
-
card_content: {
|
|
661
|
-
prompt: "Who were the first four caliphs recognized by Sunnis?",
|
|
662
|
-
choices: [
|
|
663
|
-
{ choice: "Abu Bakr, Umar, Uthman, Ali", is_correct: true },
|
|
664
|
-
{ choice: "Ali, Hasan, Husayn, Yazid", is_correct: false },
|
|
665
|
-
{ choice: "Umar, Uthman, Muawiya, Yazid", is_correct: false },
|
|
666
|
-
{ choice: "Hasan, Husayn, Abu Bakr, Umar", is_correct: false },
|
|
667
|
-
],
|
|
668
|
-
},
|
|
669
|
-
concepts: [
|
|
670
|
-
{
|
|
671
|
-
concept_text: "History of Sunni beliefs",
|
|
672
|
-
reference: "Sunni Islam#History",
|
|
673
|
-
},
|
|
674
|
-
],
|
|
675
|
-
facts: [
|
|
676
|
-
{
|
|
677
|
-
fact_text: "The first four caliphs are Abu Bakr, Umar, Uthman, Ali.",
|
|
678
|
-
reference: "Sunni Islam#History",
|
|
679
|
-
},
|
|
680
|
-
],
|
|
681
|
-
bloom_level: 1,
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
type: "cloze",
|
|
685
|
-
card_content: {
|
|
686
|
-
prompt: "The six _____ of imān are key beliefs in Sunni Islam.",
|
|
687
|
-
options: [
|
|
688
|
-
{ option: "pillars", cloze: "c0" },
|
|
689
|
-
{ option: "caliphs", cloze: "null" },
|
|
690
|
-
{ option: "sections", cloze: "null" },
|
|
691
|
-
{ option: "rules", cloze: "null" },
|
|
692
|
-
],
|
|
693
|
-
},
|
|
694
|
-
concepts: [
|
|
695
|
-
{
|
|
696
|
-
concept_text: "Principal articles of Sunni faith",
|
|
697
|
-
reference: "Sunni Islam#Pillars of iman",
|
|
698
|
-
},
|
|
699
|
-
],
|
|
700
|
-
facts: [
|
|
701
|
-
{
|
|
702
|
-
fact_text: "The six pillars of imān are key beliefs in Sunni Islam.",
|
|
703
|
-
reference: "Sunni Islam#Pillars of iman",
|
|
704
|
-
},
|
|
705
|
-
],
|
|
706
|
-
bloom_level: 1,
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
type: "mcq",
|
|
710
|
-
card_content: {
|
|
711
|
-
prompt: "Which institution is considered a leading Sunni university?",
|
|
712
|
-
choices: [
|
|
713
|
-
{ choice: "Azhar University", is_correct: true },
|
|
714
|
-
{ choice: "Harvard University", is_correct: false },
|
|
715
|
-
{ choice: "Oxford University", is_correct: false },
|
|
716
|
-
{ choice: "Yale University", is_correct: false },
|
|
717
|
-
],
|
|
718
|
-
},
|
|
719
|
-
concepts: [
|
|
720
|
-
{
|
|
721
|
-
concept_text: "Sunni organizations and institutions",
|
|
722
|
-
reference: "Sunni Islam#Sunni State institutions",
|
|
723
|
-
},
|
|
724
|
-
],
|
|
725
|
-
facts: [
|
|
726
|
-
{
|
|
727
|
-
fact_text: "Azhar University is a leading Sunni institution.",
|
|
728
|
-
reference: "Sunni Islam#Sunni State institutions",
|
|
729
|
-
},
|
|
730
|
-
],
|
|
731
|
-
bloom_level: 1,
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
type: "mcq",
|
|
735
|
-
card_content: {
|
|
736
|
-
prompt: "What is a fundamental self-image of Sunni Muslims concerning their religious identity?",
|
|
737
|
-
choices: [
|
|
738
|
-
{ choice: "They are the saved sect", is_correct: true },
|
|
739
|
-
{ choice: "They are the oppressed sect", is_correct: false },
|
|
740
|
-
{ choice: "They are the innovators", is_correct: false },
|
|
741
|
-
{ choice: "They are the deviants", is_correct: false },
|
|
742
|
-
],
|
|
743
|
-
},
|
|
744
|
-
concepts: [
|
|
745
|
-
{
|
|
746
|
-
concept_text: "Identity as the 'saved sect'",
|
|
747
|
-
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
748
|
-
},
|
|
749
|
-
],
|
|
750
|
-
facts: [
|
|
751
|
-
{
|
|
752
|
-
fact_text: "Sunnis view themselves as the saved sect.",
|
|
753
|
-
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
754
|
-
},
|
|
755
|
-
],
|
|
756
|
-
bloom_level: 1,
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
type: "mcq",
|
|
760
|
-
card_content: {
|
|
761
|
-
prompt: "What major rivalry exists within Sunni Islam?",
|
|
762
|
-
choices: [
|
|
763
|
-
{ choice: "Between Ashʿarīya and Salafīya", is_correct: true },
|
|
764
|
-
{ choice: "Between Sufis and Wahhabis", is_correct: false },
|
|
765
|
-
{ choice: "Between Hanafis and Malikis", is_correct: false },
|
|
766
|
-
{ choice: "Between Shafi'is and Hanbalis", is_correct: false },
|
|
767
|
-
],
|
|
768
|
-
},
|
|
769
|
-
concepts: [
|
|
770
|
-
{
|
|
771
|
-
concept_text: "Rivalry between Sunni theological schools",
|
|
772
|
-
reference: "Sunni Islam#Rivalry between Ashʿarīya and Salafīya and the 2016 Sunni conferences",
|
|
773
|
-
},
|
|
774
|
-
],
|
|
775
|
-
facts: [],
|
|
776
|
-
bloom_level: 1,
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
type: "cloze",
|
|
780
|
-
card_content: {
|
|
781
|
-
prompt: "Sunni Islam centers around four {{c0: legal schools}}.",
|
|
782
|
-
options: [
|
|
783
|
-
{ option: "legal schools", cloze: "c0" },
|
|
784
|
-
{ option: "pillars of faith", cloze: "null" },
|
|
785
|
-
{ option: "caliphs", cloze: "null" },
|
|
786
|
-
{ option: "sects", cloze: "null" },
|
|
787
|
-
],
|
|
788
|
-
},
|
|
789
|
-
concepts: [
|
|
790
|
-
{
|
|
791
|
-
concept_text: "Sunni jurisprudence and its sources",
|
|
792
|
-
reference: "Sunni Islam#Jurisprudence",
|
|
793
|
-
},
|
|
794
|
-
],
|
|
795
|
-
facts: [
|
|
796
|
-
{
|
|
797
|
-
fact_text: "Sunni Islam centers around four legal schools.",
|
|
798
|
-
reference: "Sunni Islam#Jurisprudence",
|
|
799
|
-
},
|
|
800
|
-
],
|
|
801
|
-
bloom_level: 1,
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
type: "match",
|
|
805
|
-
card_content: [
|
|
806
|
-
{ left_item: "Ash'ari", right_item: ["Stresses divine revelation"] },
|
|
807
|
-
{
|
|
808
|
-
left_item: "Maturidi",
|
|
809
|
-
right_item: ["Emphasizes reason with revelation"],
|
|
810
|
-
},
|
|
811
|
-
{
|
|
812
|
-
left_item: "Athari",
|
|
813
|
-
right_item: ["Strict textualism in interpretation"],
|
|
814
|
-
},
|
|
815
|
-
],
|
|
816
|
-
concepts: [
|
|
817
|
-
{
|
|
818
|
-
concept_text: "Rivalry between Sunni theological schools",
|
|
819
|
-
reference: "Sunni Islam#Rivalry between Ashʿarīya and Salafīya and the 2016 Sunni conferences",
|
|
820
|
-
},
|
|
821
|
-
],
|
|
822
|
-
facts: [],
|
|
823
|
-
bloom_level: 2,
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
type: "mcq",
|
|
827
|
-
card_content: {
|
|
828
|
-
prompt: "Which of the following is NOT one of the six principal articles of faith in Sunni Islam?",
|
|
829
|
-
choices: [
|
|
830
|
-
{ choice: "Belief in the Prophets of God", is_correct: false },
|
|
831
|
-
{ choice: "Belief in Angels", is_correct: false },
|
|
832
|
-
{ choice: "Belief in Trinity", is_correct: true },
|
|
833
|
-
{ choice: "Belief in Resurrection after Death", is_correct: false },
|
|
834
|
-
],
|
|
835
|
-
},
|
|
836
|
-
concepts: [
|
|
837
|
-
{
|
|
838
|
-
concept_text: "Principal articles of Sunni faith",
|
|
839
|
-
reference: "Sunni Islam#Pillars of iman",
|
|
840
|
-
},
|
|
841
|
-
],
|
|
842
|
-
facts: [],
|
|
843
|
-
bloom_level: 2,
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
type: "cloze",
|
|
847
|
-
card_content: {
|
|
848
|
-
prompt: "A well-known Hadith says that the Muslim Umma will split into 73 sects, only one of which will be {{c0: saved}}.",
|
|
849
|
-
options: [
|
|
850
|
-
{ option: "saved", cloze: "c0" },
|
|
851
|
-
{ option: "punished", cloze: "null" },
|
|
852
|
-
{ option: "enriched", cloze: "null" },
|
|
853
|
-
{ option: "condemned", cloze: "null" },
|
|
854
|
-
],
|
|
855
|
-
},
|
|
856
|
-
concepts: [
|
|
857
|
-
{
|
|
858
|
-
concept_text: "Identity as the 'saved sect'",
|
|
859
|
-
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
860
|
-
},
|
|
861
|
-
],
|
|
862
|
-
facts: [],
|
|
863
|
-
bloom_level: 2,
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
type: "mcq",
|
|
867
|
-
card_content: {
|
|
868
|
-
prompt: "What does 'jama' in the phrase 'ahl as-sunna wal-jama' signify?",
|
|
869
|
-
choices: [
|
|
870
|
-
{ choice: "Community", is_correct: true },
|
|
871
|
-
{ choice: "Unity", is_correct: false },
|
|
872
|
-
{ choice: "Faith", is_correct: false },
|
|
873
|
-
{ choice: "Law", is_correct: false },
|
|
874
|
-
],
|
|
875
|
-
},
|
|
876
|
-
concepts: [
|
|
877
|
-
{
|
|
878
|
-
concept_text: "Definition of Sunni Islam",
|
|
879
|
-
reference: "Sunni Islam#Terminology",
|
|
880
|
-
},
|
|
881
|
-
],
|
|
882
|
-
facts: [],
|
|
883
|
-
bloom_level: 1,
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
type: "mcq",
|
|
887
|
-
card_content: {
|
|
888
|
-
prompt: "Which of the following sources forms the basis for Sunni jurisprudence?",
|
|
889
|
-
choices: [
|
|
890
|
-
{ choice: "The Quran and Hadith", is_correct: true },
|
|
891
|
-
{ choice: "Solely Quran", is_correct: false },
|
|
892
|
-
{ choice: "Only the Hadith", is_correct: false },
|
|
893
|
-
{ choice: "The Quran and Sira", is_correct: false },
|
|
894
|
-
],
|
|
895
|
-
},
|
|
896
|
-
concepts: [
|
|
897
|
-
{
|
|
898
|
-
concept_text: "Sunni jurisprudence and its sources",
|
|
899
|
-
reference: "Sunni Islam#Jurisprudence",
|
|
900
|
-
},
|
|
901
|
-
],
|
|
902
|
-
facts: [],
|
|
903
|
-
bloom_level: 2,
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
type: "cloze",
|
|
907
|
-
card_content: {
|
|
908
|
-
prompt: "Sunni Muslims accept the {{c0: hadith}} collections of Bukhari and Muslim as the most authentic.",
|
|
909
|
-
options: [
|
|
910
|
-
{ option: "hadith", cloze: "c0" },
|
|
911
|
-
{ option: "Qur'an", cloze: "null" },
|
|
912
|
-
{ option: "tafsir", cloze: "null" },
|
|
913
|
-
{ option: "fatwa", cloze: "null" },
|
|
914
|
-
],
|
|
915
|
-
},
|
|
916
|
-
concepts: [
|
|
917
|
-
{
|
|
918
|
-
concept_text: "Sunni view of hadith",
|
|
919
|
-
reference: "Sunni Islam#Sunni view of hadith",
|
|
920
|
-
},
|
|
921
|
-
],
|
|
922
|
-
facts: [],
|
|
923
|
-
bloom_level: 1,
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
type: "cloze",
|
|
927
|
-
card_content: {
|
|
928
|
-
prompt: "Sunni jurisprudence is derived from the Quran, hadith, {{c0: juristic consensus}}, and analogical reasoning.",
|
|
929
|
-
options: [
|
|
930
|
-
{ option: "juristic consensus", cloze: "c0" },
|
|
931
|
-
{ option: "personal opinion", cloze: "null" },
|
|
932
|
-
{ option: "cultural practice", cloze: "null" },
|
|
933
|
-
{ option: "political authority", cloze: "null" },
|
|
934
|
-
],
|
|
935
|
-
},
|
|
936
|
-
concepts: [
|
|
937
|
-
{
|
|
938
|
-
concept_text: "Sunni jurisprudence and its sources",
|
|
939
|
-
reference: "Sunni Islam#Jurisprudence",
|
|
940
|
-
},
|
|
941
|
-
],
|
|
942
|
-
facts: [],
|
|
943
|
-
bloom_level: 3,
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
type: "cloze",
|
|
947
|
-
card_content: {
|
|
948
|
-
prompt: "One of the most important teaching institutions of Sunni Islam worldwide is the {{c0: Azhar}} in Egypt.",
|
|
949
|
-
options: [
|
|
950
|
-
{ option: "Azhar", cloze: "c0" },
|
|
951
|
-
{ option: "Al-Haram", cloze: "null" },
|
|
952
|
-
{ option: "Al-Aqsa", cloze: "null" },
|
|
953
|
-
{ option: "Blue Mosque", cloze: "null" },
|
|
954
|
-
],
|
|
955
|
-
},
|
|
956
|
-
concepts: [
|
|
957
|
-
{
|
|
958
|
-
concept_text: "Sunni organizations and institutions",
|
|
959
|
-
reference: "Sunni Islam#Sunni State institutions",
|
|
960
|
-
},
|
|
961
|
-
],
|
|
962
|
-
facts: [
|
|
963
|
-
{
|
|
964
|
-
fact_text: "Azhar University is a leading Sunni institution.",
|
|
965
|
-
reference: "Sunni Islam#Sunni State institutions",
|
|
966
|
-
},
|
|
967
|
-
],
|
|
968
|
-
bloom_level: 2,
|
|
969
|
-
},
|
|
970
|
-
],
|
|
971
|
-
},
|
|
972
|
-
generated_at: "2024-09-11T08:26:12.000Z",
|
|
973
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.returnFields = returnFields;
|
|
4
|
+
exports.returnSourceData = returnSourceData;
|
|
5
|
+
exports.returnHeadings = returnHeadings;
|
|
6
|
+
exports.returnCardResponse = returnCardResponse;
|
|
7
|
+
const sourceString = [
|
|
8
|
+
{
|
|
9
|
+
block_type: "image",
|
|
10
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/F%C3%BCller-tinte_hg.jpg",
|
|
11
|
+
img_caption: "Bottles of ink from Germany",
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
block_type: "image",
|
|
15
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/%D7%A7%D7%9C%D7%A3%2C_%D7%A0%D7%95%D7%A6%D7%94_%D7%95%D7%93%D7%99%D7%95.jpg",
|
|
16
|
+
img_caption: "Writing ink and a quill",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
block_type: "paragraph",
|
|
20
|
+
content: "**Ink** is a [[Gel|gel|0|wiki]], [[Sol_(colloid)|sol|1|wiki]], or [[Solution_(chemistry)|solution|2|wiki]] that contains at least one [[Colorant|colorant|3|wiki]], such as a [[Dye|dye|4|wiki]] or [[Pigment|pigment|5|wiki]], and is used to color a surface to produce an [[Image|image|6|wiki]], [[Writing|text|7|wiki]], or [[Design|design|8|wiki]]. Ink is used for [[Drawing|drawing|9|wiki]] or [[Writing|writing|10|wiki]] with a [[Pen|pen|11|wiki]], [[Brush|brush|12|wiki]], [[Reed_pen|reed pen|13|wiki]], or [[Quill|quill|14|wiki]]. Thicker inks, in paste form, are used extensively in [[Letterpress|letterpress|15|wiki]] and [[Lithographic|lithographic|16|wiki]] [[Printing|printing|17|wiki]].",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
block_type: "paragraph",
|
|
24
|
+
content: "Ink can be a complex medium, composed of [[Solvent|solvents|18|wiki]], pigments, [[Dye|dyes|19|wiki]], [[Resin|resins|20|wiki]], [[Lubricant|lubricants|21|wiki]], [[Solubilizer|solubilizers|22|wiki]], [[Surfactant|surfactants|23|wiki]], [[Suspended_solids|particulate matter|24|wiki]], [[Fluorescence|fluorescents|25|wiki]], and other materials. The components of inks serve many purposes; the ink's carrier, colorants, and other additives affect the flow and thickness of the ink and its dry appearance.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
block_type: "heading",
|
|
28
|
+
content: "History",
|
|
29
|
+
heading_level: 1,
|
|
30
|
+
children: [
|
|
31
|
+
{
|
|
32
|
+
block_type: "image",
|
|
33
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Ganesha_ink.jpg",
|
|
34
|
+
img_caption: "Ink drawing of Ganesha under an umbrella (early 19th century). Ink, called masi, an admixture of several chemical components, has been used in India since at least the 4th century BC. The practice of writing with ink and a sharp pointed needle was common in early South India. Several Jain sutras in India were compiled in ink.",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
block_type: "image",
|
|
38
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Oak_galls_and_iron(II)_sulfate_-_California_State_Archives.jpg",
|
|
39
|
+
img_caption: "Oak galls and iron(II) sulfate",
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
block_type: "paragraph",
|
|
43
|
+
content: "Many ancient cultures around the world have independently discovered and formulated inks due to the need to write and draw. The recipes and techniques for the production of ink are derived from archaeological analyses or from written texts itself. The earliest inks from all civilizations are believed to have been made with *[[Lampblack|lampblack|26|wiki]]*, a kind of [[Soot|soot|27|wiki]], easily collected as a by-product of fire.",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
block_type: "paragraph",
|
|
47
|
+
content: "Ink was used in [[Ancient_Egypt|Ancient Egypt|28|wiki]] for writing and drawing on [[Papyrus|papyrus|29|wiki]] from at least the 26th century BC. Egyptian red and black inks included [[Iron|iron|30|wiki]] and [[Ocher|ocher|31|wiki]] as pigments, in addition to [[Phosphate|phosphate|32|wiki]], [[Sulfate|sulfate|33|wiki]], [[Chloride|chloride|34|wiki]], and [[Carboxylate|carboxylate|35|wiki]] ions, with [[Lead|lead|36|wiki]] also used as a drier.",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
block_type: "paragraph",
|
|
51
|
+
content: "The earliest Chinese inks may date to four millennia ago, to the [[List_of_Neolithic_cultures_of_China|Chinese Neolithic Period|37|wiki]]. These included plant, animal, and mineral inks, based on such materials as [[Graphite|graphite|38|wiki]]; these were ground with water and applied with [[Ink_brush|ink brushes|39|wiki]]. Direct evidence for the earliest Chinese inks, similar to modern [[Inkstick|inksticks|40|wiki]], is found around 256 BC, in the end of the [[Warring_States_period|Warring States period|41|wiki]]; being produced from soot and [[Animal_glue|animal glue|42|wiki]]. The preferred inks for drawing or painting on paper or silk are produced from the resin of the pine trees between 50 and 100 years old. The Chinese inkstick is produced with a fish glue, whereas Japanese glue (膠 *nikawa*) is from cow or stag.",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
block_type: "paragraph",
|
|
55
|
+
content: "[[India_ink|India ink|43|wiki]] was invented in China, though materials were often traded from India, hence the name. The traditional Chinese method of making the ink was to grind a mixture of hide glue, [[Carbon_black|carbon black|44|wiki]], lampblack, and [[Bone_char|bone black|45|wiki]] pigment with a [[Pestle_and_mortar|pestle and mortar|46|wiki]], then pour it into a ceramic dish to dry. To use the dry mixture, a wet brush would be applied until it reliquified. The manufacture of India ink was well-established by the [[Cao_Wei|Cao Wei|47|wiki]] dynasty (220–265 AD). Indian documents written in [[Kharosthi|Kharosthi|48|wiki]] with ink have been unearthed in [[Xinjiang|Xinjiang|49|wiki]]. The practice of writing with ink and a sharp pointed needle was common in early South India. Several [[Buddhism|Buddhist|50|wiki]] and Jain sutras in India were compiled in ink.",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
block_type: "paragraph",
|
|
59
|
+
content: '[[Cephalopod_ink|Cephalopod ink|51|wiki]], known as [[Sepia_(color)|sepia|52|wiki]], turns from dark blue-black to brown on drying, and was used as an ink in the Graeco-Roman period and subsequently. Black [[Atramentum|atramentum|53|wiki]] was also used in [[Ancient_Rome|ancient Rome|54|wiki]]; in an article for *[[The_Christian_Science_Monitor|The Christian Science Monitor|55|wiki]]*, Sharon J. Huntington describes these other historical inks: "About 1,600 years ago, a popular ink recipe was created. The recipe was used for centuries. Iron salts, such as ferrous sulfate (made by treating iron with sulfuric acid), were mixed with tannin from gallnuts (they grow on trees) and a thickener. When first put to paper, this ink is bluish-black. Over time it fades to a dull brown."',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
block_type: "paragraph",
|
|
63
|
+
content: '"Scribes in medieval Europe (about AD 800 to 1500) wrote principally on parchment or vellum. One 12th century ink recipe called for hawthorn branches to be cut in the spring and left to dry. Then the bark was pounded from the branches and soaked in water for eight days. The water was boiled until it thickened and turned black. Wine was added during boiling. The ink was poured into special bags and hung in the sun. Once dried, the mixture was mixed with wine and iron salt over a fire to make the final ink."',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
block_type: "paragraph",
|
|
67
|
+
content: "The reservoir pen, which may have been the first [[Fountain_pen|fountain pen|56|wiki]], dates back to 953, when [[Al_Muizz|Ma'ād al-Mu'izz|57|wiki]], the [[Caliph|caliph|58|wiki]] of Egypt, demanded a pen that would not stain his hands or clothes, and was provided with a pen that held ink in a reservoir.",
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
block_type: "paragraph",
|
|
71
|
+
content: "In the 15th century, a new type of ink had to be developed in Europe for the [[Printing_press|printing press|59|wiki]] by [[Johannes_Gutenberg|Johannes Gutenberg|60|wiki]]. According to Martyn Lyons in his book *Books: A Living History*, Gutenberg's dye was indelible, oil-based, and made from the soot of lamps (lamp-black) mixed with [[Varnish|varnish|61|wiki]] and egg white. Two types of ink were prevalent at the time: the Greek and Roman writing ink (soot, glue, and water) and the 12th century variety composed of ferrous sulfate, gall, gum, and water. Neither of these handwriting inks could adhere to printing surfaces without creating blurs. Eventually an oily, [[Varnish|varnish|62|wiki]]-like ink made of soot, [[Turpentine|turpentine|63|wiki]], and walnut oil was created specifically for the printing press.",
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
block_type: "heading",
|
|
77
|
+
content: "Types",
|
|
78
|
+
heading_level: 1,
|
|
79
|
+
children: [
|
|
80
|
+
{
|
|
81
|
+
block_type: "image",
|
|
82
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Tintenstrich-detail_2.jpg",
|
|
83
|
+
img_caption: "Magnified line drawn by a fountain pen.",
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
block_type: "paragraph",
|
|
87
|
+
content: "",
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
block_type: "paragraph",
|
|
91
|
+
content: "Ink formulas vary, but commonly involve two components:",
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
block_type: "paragraph",
|
|
95
|
+
content: "Inks generally fall into four classes:",
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
block_type: "list",
|
|
99
|
+
content: [
|
|
100
|
+
{
|
|
101
|
+
block_type: "list_item",
|
|
102
|
+
list_type: "ordered",
|
|
103
|
+
marker: "1.",
|
|
104
|
+
content: "Colorants",
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
block_type: "list_item",
|
|
108
|
+
list_type: "ordered",
|
|
109
|
+
marker: "2.",
|
|
110
|
+
content: "Vehicles (binders)",
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
block_type: "list",
|
|
116
|
+
content: [
|
|
117
|
+
{
|
|
118
|
+
block_type: "list_item",
|
|
119
|
+
list_type: "ordered",
|
|
120
|
+
marker: "1.",
|
|
121
|
+
content: "Aqueous",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
block_type: "list_item",
|
|
125
|
+
list_type: "ordered",
|
|
126
|
+
marker: "2.",
|
|
127
|
+
content: "Liquid",
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
block_type: "list_item",
|
|
131
|
+
list_type: "ordered",
|
|
132
|
+
marker: "3.",
|
|
133
|
+
content: "Paste",
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
block_type: "list_item",
|
|
137
|
+
list_type: "ordered",
|
|
138
|
+
marker: "4.",
|
|
139
|
+
content: "Powder",
|
|
140
|
+
},
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
block_type: "heading",
|
|
145
|
+
content: "Colorants",
|
|
146
|
+
heading_level: 2,
|
|
147
|
+
children: [
|
|
148
|
+
{
|
|
149
|
+
block_type: "heading",
|
|
150
|
+
content: "Pigments",
|
|
151
|
+
heading_level: 3,
|
|
152
|
+
children: [
|
|
153
|
+
{
|
|
154
|
+
block_type: "paragraph",
|
|
155
|
+
content: "Pigment inks are used more frequently than dyes because they are more color-fast, but they are also more expensive, less consistent in color, and have less of a [[Gamut|color range|64|wiki]] than dyes. Pigments are solid, opaque particles suspended in ink to provide color. Pigment molecules typically link together in [[Crystal|crystalline|65|wiki]] structures that are 0.1–2 [[Micrometre|μm|66|wiki]] in size and comprise 5–30 percent of the ink volume. Qualities such as [[Hue|hue|67|wiki]], [[Saturation_(color_theory)|saturation|68|wiki]], and [[Lightness_(color)|lightness|69|wiki]] vary depending on the source and type of pigment.Solvent-based inks are widely used for high-speed printing and applications that require quick drying times. And the inclusion of TiO2 powder provides superior coverage and vibrant colors.",
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
block_type: "heading",
|
|
161
|
+
content: "Dyes",
|
|
162
|
+
heading_level: 3,
|
|
163
|
+
children: [
|
|
164
|
+
{
|
|
165
|
+
block_type: "paragraph",
|
|
166
|
+
content: "Dye-based inks are generally much stronger than pigment-based inks and can produce much more color of a given density per unit of mass. However, because dyes are dissolved in the liquid phase, they have a tendency to soak into paper, potentially allowing the ink to bleed at the edges of an image.",
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
block_type: "paragraph",
|
|
170
|
+
content: "To circumvent this problem, dye-based inks are made with solvents that dry rapidly or are used with quick-drying methods of printing, such as blowing hot air on the fresh print. Other methods include harder [[Paper|paper|70|wiki]] [[Sizing|sizing|71|wiki]] and more specialized paper coatings. The latter is particularly suited to inks used in non-industrial settings (which must conform to tighter toxicity and emission controls), such as [[Inkjet_printer|inkjet printer|72|wiki]] inks. Another technique involves coating the paper with a charged coating. If the dye has the opposite charge, it is attracted to and retained by this coating, while the solvent soaks into the paper. [[Cellulose|Cellulose|73|wiki]], the wood-derived material most paper is made of, is naturally charged, and so a compound that complexes with both the dye and the paper's surface aids retention at the surface. Such a compound is commonly used in ink-jet printing inks.",
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
block_type: "paragraph",
|
|
174
|
+
content: "An additional advantage of dye-based ink systems is that the dye [[Molecule|molecules|74|wiki]] can interact with other ink ingredients, potentially allowing greater benefit as compared to pigmented inks from [[Optical_brightener|optical brighteners|75|wiki]] and color-enhancing agents designed to increase the intensity and appearance of dyes.",
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
block_type: "paragraph",
|
|
178
|
+
content: "Dye-based inks can be used for anti-counterfeit purposes and can be found in some gel inks, fountain pen inks, and inks used for paper currency. These inks react with cellulose to bring about a permanent color change. Dye based inks are used to color hair.",
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
],
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
block_type: "heading",
|
|
188
|
+
content: "Health and environmental aspects",
|
|
189
|
+
heading_level: 1,
|
|
190
|
+
children: [
|
|
191
|
+
{
|
|
192
|
+
block_type: "paragraph",
|
|
193
|
+
content: "There is a misconception that ink is non-toxic even if swallowed. Once ingested, ink can be hazardous to one's health. Certain inks, such as those used in digital printers, and even those found in a common pen can be harmful. Though ink does not easily cause death, repeated skin contact or ingestion can cause effects such as severe headaches, skin irritation, or nervous system damage. These effects can be caused by solvents, or by pigment ingredients such as *p*-Anisidine, which helps create some inks' color and shine.",
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
block_type: "paragraph",
|
|
197
|
+
content: "Three main environmental issues with ink are:",
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
block_type: "paragraph",
|
|
201
|
+
content: "Some regulatory bodies have set standards for the amount of heavy metals in ink. There is a trend toward [[Vegetable_oil|vegetable oils|76|wiki]] rather than [[Petroleum_oil|petroleum oils|77|wiki]] in recent years in response to a demand for better [[Sustainability|environmental sustainability|78|wiki]] performance.",
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
block_type: "paragraph",
|
|
205
|
+
content: "Ink uses up non-renewable oils and metals, which has a negative impact on the environment.",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
block_type: "list",
|
|
209
|
+
content: [
|
|
210
|
+
{
|
|
211
|
+
block_type: "list_item",
|
|
212
|
+
list_type: "ordered",
|
|
213
|
+
marker: "1.",
|
|
214
|
+
content: "[[Heavy_metal_(chemistry)|Heavy metals|79|wiki]]",
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
block_type: "list_item",
|
|
218
|
+
list_type: "ordered",
|
|
219
|
+
marker: "2.",
|
|
220
|
+
content: "Non-renewable oils",
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
block_type: "list_item",
|
|
224
|
+
list_type: "ordered",
|
|
225
|
+
marker: "3.",
|
|
226
|
+
content: "[[Volatile_organic_compound|Volatile organic compounds|80|wiki]]",
|
|
227
|
+
},
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
block_type: "heading",
|
|
232
|
+
content: "Carbon",
|
|
233
|
+
heading_level: 2,
|
|
234
|
+
children: [
|
|
235
|
+
{
|
|
236
|
+
block_type: "image",
|
|
237
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Inkstick.jpg",
|
|
238
|
+
img_caption: "Chinese inkstick; carbon-based and made from soot and animal glue",
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
block_type: "paragraph",
|
|
242
|
+
content: "Carbon inks were commonly made from lampblack or soot and a binding agent such as [[Gum_arabic|gum arabic|81|wiki]] or [[Animal_glue|animal glue|82|wiki]]. The binding agent keeps carbon particles in suspension and adhered to paper. Carbon particles do not fade over time even when bleached or when in sunlight. One benefit is that carbon ink does not harm paper. Over time, the ink is chemically stable and therefore does not threaten the paper's strength. Despite these benefits, carbon ink is not ideal for permanence and ease of preservation. Carbon ink tends to smudge in humid environments and can be washed off surfaces. The best method of preserving a document written in carbon ink is to store it in a dry environment (Barrow 1972).",
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
block_type: "paragraph",
|
|
246
|
+
content: "Recently, carbon inks made from carbon nanotubes have been successfully created. They are similar in composition to traditional inks in that they use a polymer to suspend the carbon nanotubes. These inks can be used in inkjet printers and produce electrically conductive patterns.",
|
|
247
|
+
},
|
|
248
|
+
],
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
block_type: "heading",
|
|
252
|
+
content: "Iron gall (common ink)",
|
|
253
|
+
heading_level: 2,
|
|
254
|
+
children: [
|
|
255
|
+
{
|
|
256
|
+
block_type: "paragraph",
|
|
257
|
+
content: "Iron gall inks became prominent in the early 12th century; they were used for centuries and were widely thought to be the best type of ink. However, iron gall ink is corrosive and damages paper over time (Waters 1940). Items containing this ink can become brittle and the writing fades to brown. The original scores of [[Johann_Sebastian_Bach|Johann Sebastian Bach|83|wiki]] are threatened by the destructive properties of iron gall ink. The majority of his works are held by the German State Library, and about 25% of those are in advanced stages of decay (American Libraries 2000). The rate at which the writing fades is based on several factors, such as proportions of ink ingredients, amount deposited on the paper, and paper composition (Barrow 1972:16). Corrosion is caused by acid catalyzed hydrolysis and iron(II)-catalysed oxidation of cellulose (Rouchon-Quillet 2004:389).",
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
block_type: "paragraph",
|
|
261
|
+
content: "Treatment is a controversial subject. No treatment undoes damage already caused by acidic ink. Deterioration can only be stopped or slowed. Some think it best not to treat the item at all for fear of the consequences. Others believe that non-aqueous procedures are the best solution. Yet others think an aqueous procedure may preserve items written with iron gall ink. Aqueous treatments include distilled water at different temperatures, calcium hydroxide, calcium bicarbonate, magnesium carbonate, magnesium bicarbonate, and calcium hyphenate. There are many possible side effects from these treatments. There can be mechanical damage, which further weakens the paper. Paper color or ink color may change, and ink may bleed. Other consequences of aqueous treatment are a change of ink texture or formation of plaque on the surface of the ink (Reibland & de Groot 1999).",
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
block_type: "paragraph",
|
|
265
|
+
content: "Iron gall inks require storage in a stable environment, because fluctuating [[Relative_humidity|relative humidity|84|wiki]] increases the rate that formic acid, acetic acid, and furan derivatives form in the material the ink was used on. Sulfuric acid acts as a catalyst to cellulose hydrolysis, and iron (II) sulfate acts as a catalyst to cellulose oxidation. These chemical reactions physically weaken the paper, causing [[Brittle_Books_Program|brittleness|85|wiki]].",
|
|
266
|
+
},
|
|
267
|
+
],
|
|
268
|
+
},
|
|
269
|
+
],
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
block_type: "heading",
|
|
273
|
+
content: "Indelible ink",
|
|
274
|
+
heading_level: 1,
|
|
275
|
+
children: [
|
|
276
|
+
{
|
|
277
|
+
block_type: "image",
|
|
278
|
+
img_src: "https://wikipedia.org/wiki/Special:Redirect/file/Un_%C3%A9lecteur_avec_l'_encre_ind%C3%A9l%C3%A9bile_au_pouce%2C_apr%C3%A8s_son_vote_dans_un_centre_dans_la_commune_de_la_Tshopo_%C3%A0_Kisangani_(6418380139).jpg",
|
|
279
|
+
img_caption: "A voter's thumb stained with indelible ink",
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
block_type: "paragraph",
|
|
283
|
+
content: "",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
block_type: "paragraph",
|
|
287
|
+
content: '*Indelible* means "un-removable". Some types of indelible ink have a very short shelf life because of the quickly evaporating solvents used. India, Mexico, Indonesia, Malaysia and other developing countries have used indelible ink in the form of [[Electoral_stain|electoral stain|86|wiki]] to prevent [[Electoral_fraud|electoral fraud|87|wiki]]. Election ink based on [[Silver_nitrate|silver nitrate|88|wiki]] was first applied in the [[1962_Indian_general_election|1962 Indian general election|89|wiki]], after being developed at the [[National_Physical_Laboratory_of_India|National Physical Laboratory of India|90|wiki]].',
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
block_type: "paragraph",
|
|
291
|
+
content: 'The election commission in India has used indelible ink for many elections. Indonesia used it in its election in 2014. In Mali, the ink is applied to the fingernail. Indelible ink itself is not infallible as it can be used to commit electoral [[Fraud|fraud|91|wiki]] by marking opponent party members before they have chances to cast their votes. There are also reports of "indelible" ink washing off voters\' fingers in Afghanistan.',
|
|
292
|
+
},
|
|
293
|
+
],
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
block_type: "heading",
|
|
297
|
+
content: "See also",
|
|
298
|
+
heading_level: 1,
|
|
299
|
+
children: [
|
|
300
|
+
{
|
|
301
|
+
block_type: "paragraph",
|
|
302
|
+
content: "",
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
block_type: "list",
|
|
306
|
+
content: [
|
|
307
|
+
{
|
|
308
|
+
block_type: "list_item",
|
|
309
|
+
list_type: "ordered",
|
|
310
|
+
marker: "1.",
|
|
311
|
+
content: "[[Blue_Wool_Scale|Blue Wool Scale|92|wiki]]",
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
block_type: "list_item",
|
|
315
|
+
list_type: "ordered",
|
|
316
|
+
marker: "2.",
|
|
317
|
+
content: "[[De-inked_pulp|De-inked pulp|93|wiki]]",
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
block_type: "list_item",
|
|
321
|
+
list_type: "ordered",
|
|
322
|
+
marker: "3.",
|
|
323
|
+
content: "[[Election_ink|Election ink|94|wiki]]",
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
block_type: "list_item",
|
|
327
|
+
list_type: "ordered",
|
|
328
|
+
marker: "4.",
|
|
329
|
+
content: "[[Fountain_pen_ink|Fountain pen ink|95|wiki]]",
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
block_type: "list_item",
|
|
333
|
+
list_type: "ordered",
|
|
334
|
+
marker: "5.",
|
|
335
|
+
content: "[[Gel_pen|Gel pen|96|wiki]]",
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
block_type: "list_item",
|
|
339
|
+
list_type: "ordered",
|
|
340
|
+
marker: "6.",
|
|
341
|
+
content: "[[Ink_eraser|Ink eraser|97|wiki]]",
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
block_type: "list_item",
|
|
345
|
+
list_type: "ordered",
|
|
346
|
+
marker: "7.",
|
|
347
|
+
content: "[[Inkjet_printing|Inkjet printing|98|wiki]]",
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
block_type: "list_item",
|
|
351
|
+
list_type: "ordered",
|
|
352
|
+
marker: "8.",
|
|
353
|
+
content: "[[Ecofont|Ecofont|99|wiki]], an inksaving typeface",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
block_type: "list_item",
|
|
357
|
+
list_type: "ordered",
|
|
358
|
+
marker: "9.",
|
|
359
|
+
content: "[[Invisible_ink|Invisible ink|100|wiki]]",
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
block_type: "list_item",
|
|
363
|
+
list_type: "ordered",
|
|
364
|
+
marker: "10.",
|
|
365
|
+
content: "[[Lightfastness|Lightfastness|101|wiki]]",
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
block_type: "list_item",
|
|
369
|
+
list_type: "ordered",
|
|
370
|
+
marker: "11.",
|
|
371
|
+
content: "[[Pharmaceutical_ink|Pharmaceutical ink|102|wiki]]",
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
block_type: "list_item",
|
|
375
|
+
list_type: "ordered",
|
|
376
|
+
marker: "12.",
|
|
377
|
+
content: "[[Preservation_(library_and_archival_science)|Preservation (library and archival science)|103|wiki]]",
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
block_type: "list_item",
|
|
381
|
+
list_type: "ordered",
|
|
382
|
+
marker: "13.",
|
|
383
|
+
content: "[[Preservation_of_illuminated_manuscripts|Preservation of illuminated manuscripts|104|wiki]]",
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
block_type: "list_item",
|
|
387
|
+
list_type: "ordered",
|
|
388
|
+
marker: "14.",
|
|
389
|
+
content: "[[Soy_ink|Soy ink|105|wiki]]",
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
block_type: "list_item",
|
|
393
|
+
list_type: "ordered",
|
|
394
|
+
marker: "15.",
|
|
395
|
+
content: "[[Squid_ink|Squid ink|106|wiki]]",
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
block_type: "list_item",
|
|
399
|
+
list_type: "ordered",
|
|
400
|
+
marker: "16.",
|
|
401
|
+
content: "[[Stark's_ink|Stark's ink|107|wiki]]",
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
block_type: "list_item",
|
|
405
|
+
list_type: "ordered",
|
|
406
|
+
marker: "17.",
|
|
407
|
+
content: "[[Tattoo_ink|Tattoo ink|108|wiki]]",
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
block_type: "list_item",
|
|
411
|
+
list_type: "ordered",
|
|
412
|
+
marker: "18.",
|
|
413
|
+
content: "[[Toner_(printing)|Toner (printing)|109|wiki]]",
|
|
414
|
+
},
|
|
415
|
+
],
|
|
416
|
+
},
|
|
417
|
+
],
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
block_type: "heading",
|
|
421
|
+
content: "References",
|
|
422
|
+
heading_level: 1,
|
|
423
|
+
children: [],
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
block_type: "heading",
|
|
427
|
+
content: "Sources",
|
|
428
|
+
heading_level: 1,
|
|
429
|
+
children: [
|
|
430
|
+
{
|
|
431
|
+
block_type: "paragraph",
|
|
432
|
+
content: "",
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
block_type: "list",
|
|
436
|
+
content: [
|
|
437
|
+
{
|
|
438
|
+
block_type: "list_item",
|
|
439
|
+
list_type: "ordered",
|
|
440
|
+
marker: "1.",
|
|
441
|
+
content: 'Ainsworth, Mitchell, C., "Inks and Their Composition and Manufacture", Charles Griffin and Company Ltd, 1904.',
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
block_type: "list_item",
|
|
445
|
+
list_type: "ordered",
|
|
446
|
+
marker: "2.",
|
|
447
|
+
content: "Banerji, Sures Chandra (1989). *A Companion to Sanskrit Literature*. Motilal Banarsidass. ISBN 81-208-0063-X.",
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
block_type: "list_item",
|
|
451
|
+
list_type: "ordered",
|
|
452
|
+
marker: "3.",
|
|
453
|
+
content: 'Martín-Gil J., Ramos-Sánchez MC, Martín-Gil FJ and José-Yacamán M. "Chemical composition of a fountain pen ink". *Journal of Chemical Education*, 2006, 83, 1476–78.',
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
block_type: "list_item",
|
|
457
|
+
list_type: "ordered",
|
|
458
|
+
marker: "4.",
|
|
459
|
+
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
460
|
+
},
|
|
461
|
+
],
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
block_type: "list",
|
|
465
|
+
content: [
|
|
466
|
+
{
|
|
467
|
+
block_type: "list_item",
|
|
468
|
+
list_type: "ordered",
|
|
469
|
+
marker: "1.",
|
|
470
|
+
content: 'Martín-Gil J., Ramos-Sánchez MC, Martín-Gil FJ and José-Yacamán M. "Chemical composition of a fountain pen ink". *Journal of Chemical Education*, 2006, 83, 1476–78.',
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
block_type: "list_item",
|
|
474
|
+
list_type: "ordered",
|
|
475
|
+
marker: "2.",
|
|
476
|
+
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
477
|
+
},
|
|
478
|
+
],
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
block_type: "list",
|
|
482
|
+
content: [
|
|
483
|
+
{
|
|
484
|
+
block_type: "list_item",
|
|
485
|
+
list_type: "ordered",
|
|
486
|
+
marker: "1.",
|
|
487
|
+
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
488
|
+
},
|
|
489
|
+
],
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
block_type: "list",
|
|
493
|
+
content: [
|
|
494
|
+
{
|
|
495
|
+
block_type: "list_item",
|
|
496
|
+
list_type: "ordered",
|
|
497
|
+
marker: "1.",
|
|
498
|
+
content: "Sircar, D. C. (1996).*Indian epigraphy*. Motilal Banarsidass. ISBN 81-208-1166-6.",
|
|
499
|
+
},
|
|
500
|
+
],
|
|
501
|
+
},
|
|
502
|
+
],
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
block_type: "heading",
|
|
506
|
+
content: "Further reading",
|
|
507
|
+
heading_level: 1,
|
|
508
|
+
children: [
|
|
509
|
+
{
|
|
510
|
+
block_type: "paragraph",
|
|
511
|
+
content: "",
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
block_type: "list",
|
|
515
|
+
content: [
|
|
516
|
+
{
|
|
517
|
+
block_type: "list_item",
|
|
518
|
+
list_type: "ordered",
|
|
519
|
+
marker: "1.",
|
|
520
|
+
content: "Cueppers, Christoph (1989). \"On the Manufacture of Ink.\" *Ancient Nepal – Journal of the Department of Archaeology*, Number 113, August–September 1989, pp. 1–7. [The Tibetan text and translation of a section of the work called, *Bzo gnas nyer mkho'i za ma tog* by 'Jam-mgon 'Ju Mi-pham-rgya-mtsho (1846–1912) describing various traditional Tibetan techniques of making inks from different sources of soot, and from earth, [[Puffball|puffballs|110|wiki]], dung, *ser-sha* – a yellow fungus, and the fruit of *tsi dra ka* (*Ricinus communis*).]",
|
|
521
|
+
},
|
|
522
|
+
],
|
|
523
|
+
},
|
|
524
|
+
],
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
block_type: "heading",
|
|
528
|
+
content: "External links",
|
|
529
|
+
heading_level: 1,
|
|
530
|
+
children: [
|
|
531
|
+
{
|
|
532
|
+
block_type: "paragraph",
|
|
533
|
+
content: "",
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
block_type: "list",
|
|
537
|
+
content: [
|
|
538
|
+
{
|
|
539
|
+
block_type: "list_item",
|
|
540
|
+
list_type: "ordered",
|
|
541
|
+
marker: "1.",
|
|
542
|
+
content: "Forty Centuries of Ink (David N. Carvalho); A detailed online textbook (archived 8 June 2003)",
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
block_type: "list_item",
|
|
546
|
+
list_type: "ordered",
|
|
547
|
+
marker: "2.",
|
|
548
|
+
content: "Roman ink article by Alexander Allen In Smith's Dictionary Greek and Roman Antiquities (1875), in LacusCurtius",
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
block_type: "list_item",
|
|
552
|
+
list_type: "ordered",
|
|
553
|
+
marker: "3.",
|
|
554
|
+
content: "Ancient and Modern Ink Recipes (David N. Carvalho)",
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
block_type: "list_item",
|
|
558
|
+
list_type: "ordered",
|
|
559
|
+
marker: "4.",
|
|
560
|
+
content: "[Gorgeous Portrayal Of How Ink Is Made](http://www.huffingtonpost.com/2010/10/01/gorgeous-portrayal-of-how_n_747665.html?view=print) – video at *[[The_Huffington_Post|The Huffington Post|111|wiki]]*",
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
block_type: "list_item",
|
|
564
|
+
list_type: "ordered",
|
|
565
|
+
marker: "5.",
|
|
566
|
+
content: '["A Light Note on the Science of Writing and Inks"](http://www.wdl.org/en/item/3176) is a manuscript, in Arabic, from 1852. It discusses the process of making inks.',
|
|
567
|
+
},
|
|
568
|
+
],
|
|
569
|
+
},
|
|
570
|
+
],
|
|
571
|
+
},
|
|
572
|
+
];
|
|
573
|
+
const headings = [
|
|
574
|
+
"History",
|
|
575
|
+
"Types",
|
|
576
|
+
"Health and environmental aspects",
|
|
577
|
+
"Indelible ink",
|
|
578
|
+
"See also",
|
|
579
|
+
"References",
|
|
580
|
+
"Sources",
|
|
581
|
+
"Further reading",
|
|
582
|
+
"External links",
|
|
583
|
+
];
|
|
584
|
+
function returnFields() {
|
|
585
|
+
return [
|
|
586
|
+
"Sciences",
|
|
587
|
+
"Technology & Engineering",
|
|
588
|
+
"Humanities & Cultural Studies",
|
|
589
|
+
"Social Sciences & Global Studies",
|
|
590
|
+
"Business & Management",
|
|
591
|
+
"Health & Medicine",
|
|
592
|
+
"Environmental Studies & Earth Sciences",
|
|
593
|
+
"Education, Learning & Personal Development",
|
|
594
|
+
"Creative & Performing Arts",
|
|
595
|
+
"Law, Governance & Ethics",
|
|
596
|
+
"Recreation, Lifestyle & Practical Skills",
|
|
597
|
+
"Technology & Media Literacy",
|
|
598
|
+
"Philosophy & Critical Thinking",
|
|
599
|
+
"Space & Astronomical Sciences",
|
|
600
|
+
"Agriculture & Food Sciences",
|
|
601
|
+
"Trades & Craftsmanship",
|
|
602
|
+
"Reference & Indexing",
|
|
603
|
+
"Other",
|
|
604
|
+
];
|
|
605
|
+
}
|
|
606
|
+
const sourceContent = {
|
|
607
|
+
type: "source",
|
|
608
|
+
title: "Ink",
|
|
609
|
+
headings: headings,
|
|
610
|
+
content: sourceString,
|
|
611
|
+
fields: returnFields(),
|
|
612
|
+
// taxonomy: null,
|
|
613
|
+
};
|
|
614
|
+
function returnSourceData() {
|
|
615
|
+
return sourceContent;
|
|
616
|
+
}
|
|
617
|
+
function returnHeadings() {
|
|
618
|
+
return headings;
|
|
619
|
+
}
|
|
620
|
+
function returnCardResponse() {
|
|
621
|
+
return cardResponse;
|
|
622
|
+
}
|
|
623
|
+
let cardResponse = {
|
|
624
|
+
status_code: 200,
|
|
625
|
+
metadata: {},
|
|
626
|
+
usage_data: {
|
|
627
|
+
prompt_tokens: 23234,
|
|
628
|
+
completion_tokens: 2796,
|
|
629
|
+
total_tokens: 26030,
|
|
630
|
+
},
|
|
631
|
+
generated_content: {
|
|
632
|
+
test_cards: [
|
|
633
|
+
{
|
|
634
|
+
type: "mcq",
|
|
635
|
+
card_content: {
|
|
636
|
+
prompt: "Which term is used to refer to the largest branch of Islam, followed by 85-90% of Muslims worldwide?",
|
|
637
|
+
choices: [
|
|
638
|
+
{ choice: "Sunni Islam", is_correct: true },
|
|
639
|
+
{ choice: "Shia Islam", is_correct: false },
|
|
640
|
+
{ choice: "Kharijites", is_correct: false },
|
|
641
|
+
{ choice: "Ibadi", is_correct: false },
|
|
642
|
+
],
|
|
643
|
+
},
|
|
644
|
+
concepts: [
|
|
645
|
+
{
|
|
646
|
+
concept_text: "Definition of Sunni Islam",
|
|
647
|
+
reference: "Sunni Islam#Terminology",
|
|
648
|
+
},
|
|
649
|
+
],
|
|
650
|
+
facts: [
|
|
651
|
+
{
|
|
652
|
+
fact_text: "85-90% of Muslims are Sunni.",
|
|
653
|
+
reference: "Sunni Islam#Terminology",
|
|
654
|
+
},
|
|
655
|
+
],
|
|
656
|
+
bloom_level: 1,
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
type: "mcq",
|
|
660
|
+
card_content: {
|
|
661
|
+
prompt: "Who were the first four caliphs recognized by Sunnis?",
|
|
662
|
+
choices: [
|
|
663
|
+
{ choice: "Abu Bakr, Umar, Uthman, Ali", is_correct: true },
|
|
664
|
+
{ choice: "Ali, Hasan, Husayn, Yazid", is_correct: false },
|
|
665
|
+
{ choice: "Umar, Uthman, Muawiya, Yazid", is_correct: false },
|
|
666
|
+
{ choice: "Hasan, Husayn, Abu Bakr, Umar", is_correct: false },
|
|
667
|
+
],
|
|
668
|
+
},
|
|
669
|
+
concepts: [
|
|
670
|
+
{
|
|
671
|
+
concept_text: "History of Sunni beliefs",
|
|
672
|
+
reference: "Sunni Islam#History",
|
|
673
|
+
},
|
|
674
|
+
],
|
|
675
|
+
facts: [
|
|
676
|
+
{
|
|
677
|
+
fact_text: "The first four caliphs are Abu Bakr, Umar, Uthman, Ali.",
|
|
678
|
+
reference: "Sunni Islam#History",
|
|
679
|
+
},
|
|
680
|
+
],
|
|
681
|
+
bloom_level: 1,
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
type: "cloze",
|
|
685
|
+
card_content: {
|
|
686
|
+
prompt: "The six _____ of imān are key beliefs in Sunni Islam.",
|
|
687
|
+
options: [
|
|
688
|
+
{ option: "pillars", cloze: "c0" },
|
|
689
|
+
{ option: "caliphs", cloze: "null" },
|
|
690
|
+
{ option: "sections", cloze: "null" },
|
|
691
|
+
{ option: "rules", cloze: "null" },
|
|
692
|
+
],
|
|
693
|
+
},
|
|
694
|
+
concepts: [
|
|
695
|
+
{
|
|
696
|
+
concept_text: "Principal articles of Sunni faith",
|
|
697
|
+
reference: "Sunni Islam#Pillars of iman",
|
|
698
|
+
},
|
|
699
|
+
],
|
|
700
|
+
facts: [
|
|
701
|
+
{
|
|
702
|
+
fact_text: "The six pillars of imān are key beliefs in Sunni Islam.",
|
|
703
|
+
reference: "Sunni Islam#Pillars of iman",
|
|
704
|
+
},
|
|
705
|
+
],
|
|
706
|
+
bloom_level: 1,
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
type: "mcq",
|
|
710
|
+
card_content: {
|
|
711
|
+
prompt: "Which institution is considered a leading Sunni university?",
|
|
712
|
+
choices: [
|
|
713
|
+
{ choice: "Azhar University", is_correct: true },
|
|
714
|
+
{ choice: "Harvard University", is_correct: false },
|
|
715
|
+
{ choice: "Oxford University", is_correct: false },
|
|
716
|
+
{ choice: "Yale University", is_correct: false },
|
|
717
|
+
],
|
|
718
|
+
},
|
|
719
|
+
concepts: [
|
|
720
|
+
{
|
|
721
|
+
concept_text: "Sunni organizations and institutions",
|
|
722
|
+
reference: "Sunni Islam#Sunni State institutions",
|
|
723
|
+
},
|
|
724
|
+
],
|
|
725
|
+
facts: [
|
|
726
|
+
{
|
|
727
|
+
fact_text: "Azhar University is a leading Sunni institution.",
|
|
728
|
+
reference: "Sunni Islam#Sunni State institutions",
|
|
729
|
+
},
|
|
730
|
+
],
|
|
731
|
+
bloom_level: 1,
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
type: "mcq",
|
|
735
|
+
card_content: {
|
|
736
|
+
prompt: "What is a fundamental self-image of Sunni Muslims concerning their religious identity?",
|
|
737
|
+
choices: [
|
|
738
|
+
{ choice: "They are the saved sect", is_correct: true },
|
|
739
|
+
{ choice: "They are the oppressed sect", is_correct: false },
|
|
740
|
+
{ choice: "They are the innovators", is_correct: false },
|
|
741
|
+
{ choice: "They are the deviants", is_correct: false },
|
|
742
|
+
],
|
|
743
|
+
},
|
|
744
|
+
concepts: [
|
|
745
|
+
{
|
|
746
|
+
concept_text: "Identity as the 'saved sect'",
|
|
747
|
+
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
748
|
+
},
|
|
749
|
+
],
|
|
750
|
+
facts: [
|
|
751
|
+
{
|
|
752
|
+
fact_text: "Sunnis view themselves as the saved sect.",
|
|
753
|
+
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
754
|
+
},
|
|
755
|
+
],
|
|
756
|
+
bloom_level: 1,
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
type: "mcq",
|
|
760
|
+
card_content: {
|
|
761
|
+
prompt: "What major rivalry exists within Sunni Islam?",
|
|
762
|
+
choices: [
|
|
763
|
+
{ choice: "Between Ashʿarīya and Salafīya", is_correct: true },
|
|
764
|
+
{ choice: "Between Sufis and Wahhabis", is_correct: false },
|
|
765
|
+
{ choice: "Between Hanafis and Malikis", is_correct: false },
|
|
766
|
+
{ choice: "Between Shafi'is and Hanbalis", is_correct: false },
|
|
767
|
+
],
|
|
768
|
+
},
|
|
769
|
+
concepts: [
|
|
770
|
+
{
|
|
771
|
+
concept_text: "Rivalry between Sunni theological schools",
|
|
772
|
+
reference: "Sunni Islam#Rivalry between Ashʿarīya and Salafīya and the 2016 Sunni conferences",
|
|
773
|
+
},
|
|
774
|
+
],
|
|
775
|
+
facts: [],
|
|
776
|
+
bloom_level: 1,
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
type: "cloze",
|
|
780
|
+
card_content: {
|
|
781
|
+
prompt: "Sunni Islam centers around four {{c0: legal schools}}.",
|
|
782
|
+
options: [
|
|
783
|
+
{ option: "legal schools", cloze: "c0" },
|
|
784
|
+
{ option: "pillars of faith", cloze: "null" },
|
|
785
|
+
{ option: "caliphs", cloze: "null" },
|
|
786
|
+
{ option: "sects", cloze: "null" },
|
|
787
|
+
],
|
|
788
|
+
},
|
|
789
|
+
concepts: [
|
|
790
|
+
{
|
|
791
|
+
concept_text: "Sunni jurisprudence and its sources",
|
|
792
|
+
reference: "Sunni Islam#Jurisprudence",
|
|
793
|
+
},
|
|
794
|
+
],
|
|
795
|
+
facts: [
|
|
796
|
+
{
|
|
797
|
+
fact_text: "Sunni Islam centers around four legal schools.",
|
|
798
|
+
reference: "Sunni Islam#Jurisprudence",
|
|
799
|
+
},
|
|
800
|
+
],
|
|
801
|
+
bloom_level: 1,
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
type: "match",
|
|
805
|
+
card_content: [
|
|
806
|
+
{ left_item: "Ash'ari", right_item: ["Stresses divine revelation"] },
|
|
807
|
+
{
|
|
808
|
+
left_item: "Maturidi",
|
|
809
|
+
right_item: ["Emphasizes reason with revelation"],
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
left_item: "Athari",
|
|
813
|
+
right_item: ["Strict textualism in interpretation"],
|
|
814
|
+
},
|
|
815
|
+
],
|
|
816
|
+
concepts: [
|
|
817
|
+
{
|
|
818
|
+
concept_text: "Rivalry between Sunni theological schools",
|
|
819
|
+
reference: "Sunni Islam#Rivalry between Ashʿarīya and Salafīya and the 2016 Sunni conferences",
|
|
820
|
+
},
|
|
821
|
+
],
|
|
822
|
+
facts: [],
|
|
823
|
+
bloom_level: 2,
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
type: "mcq",
|
|
827
|
+
card_content: {
|
|
828
|
+
prompt: "Which of the following is NOT one of the six principal articles of faith in Sunni Islam?",
|
|
829
|
+
choices: [
|
|
830
|
+
{ choice: "Belief in the Prophets of God", is_correct: false },
|
|
831
|
+
{ choice: "Belief in Angels", is_correct: false },
|
|
832
|
+
{ choice: "Belief in Trinity", is_correct: true },
|
|
833
|
+
{ choice: "Belief in Resurrection after Death", is_correct: false },
|
|
834
|
+
],
|
|
835
|
+
},
|
|
836
|
+
concepts: [
|
|
837
|
+
{
|
|
838
|
+
concept_text: "Principal articles of Sunni faith",
|
|
839
|
+
reference: "Sunni Islam#Pillars of iman",
|
|
840
|
+
},
|
|
841
|
+
],
|
|
842
|
+
facts: [],
|
|
843
|
+
bloom_level: 2,
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
type: "cloze",
|
|
847
|
+
card_content: {
|
|
848
|
+
prompt: "A well-known Hadith says that the Muslim Umma will split into 73 sects, only one of which will be {{c0: saved}}.",
|
|
849
|
+
options: [
|
|
850
|
+
{ option: "saved", cloze: "c0" },
|
|
851
|
+
{ option: "punished", cloze: "null" },
|
|
852
|
+
{ option: "enriched", cloze: "null" },
|
|
853
|
+
{ option: "condemned", cloze: "null" },
|
|
854
|
+
],
|
|
855
|
+
},
|
|
856
|
+
concepts: [
|
|
857
|
+
{
|
|
858
|
+
concept_text: "Identity as the 'saved sect'",
|
|
859
|
+
reference: "Sunni Islam#Self-image of the Sunnis",
|
|
860
|
+
},
|
|
861
|
+
],
|
|
862
|
+
facts: [],
|
|
863
|
+
bloom_level: 2,
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
type: "mcq",
|
|
867
|
+
card_content: {
|
|
868
|
+
prompt: "What does 'jama' in the phrase 'ahl as-sunna wal-jama' signify?",
|
|
869
|
+
choices: [
|
|
870
|
+
{ choice: "Community", is_correct: true },
|
|
871
|
+
{ choice: "Unity", is_correct: false },
|
|
872
|
+
{ choice: "Faith", is_correct: false },
|
|
873
|
+
{ choice: "Law", is_correct: false },
|
|
874
|
+
],
|
|
875
|
+
},
|
|
876
|
+
concepts: [
|
|
877
|
+
{
|
|
878
|
+
concept_text: "Definition of Sunni Islam",
|
|
879
|
+
reference: "Sunni Islam#Terminology",
|
|
880
|
+
},
|
|
881
|
+
],
|
|
882
|
+
facts: [],
|
|
883
|
+
bloom_level: 1,
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
type: "mcq",
|
|
887
|
+
card_content: {
|
|
888
|
+
prompt: "Which of the following sources forms the basis for Sunni jurisprudence?",
|
|
889
|
+
choices: [
|
|
890
|
+
{ choice: "The Quran and Hadith", is_correct: true },
|
|
891
|
+
{ choice: "Solely Quran", is_correct: false },
|
|
892
|
+
{ choice: "Only the Hadith", is_correct: false },
|
|
893
|
+
{ choice: "The Quran and Sira", is_correct: false },
|
|
894
|
+
],
|
|
895
|
+
},
|
|
896
|
+
concepts: [
|
|
897
|
+
{
|
|
898
|
+
concept_text: "Sunni jurisprudence and its sources",
|
|
899
|
+
reference: "Sunni Islam#Jurisprudence",
|
|
900
|
+
},
|
|
901
|
+
],
|
|
902
|
+
facts: [],
|
|
903
|
+
bloom_level: 2,
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
type: "cloze",
|
|
907
|
+
card_content: {
|
|
908
|
+
prompt: "Sunni Muslims accept the {{c0: hadith}} collections of Bukhari and Muslim as the most authentic.",
|
|
909
|
+
options: [
|
|
910
|
+
{ option: "hadith", cloze: "c0" },
|
|
911
|
+
{ option: "Qur'an", cloze: "null" },
|
|
912
|
+
{ option: "tafsir", cloze: "null" },
|
|
913
|
+
{ option: "fatwa", cloze: "null" },
|
|
914
|
+
],
|
|
915
|
+
},
|
|
916
|
+
concepts: [
|
|
917
|
+
{
|
|
918
|
+
concept_text: "Sunni view of hadith",
|
|
919
|
+
reference: "Sunni Islam#Sunni view of hadith",
|
|
920
|
+
},
|
|
921
|
+
],
|
|
922
|
+
facts: [],
|
|
923
|
+
bloom_level: 1,
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
type: "cloze",
|
|
927
|
+
card_content: {
|
|
928
|
+
prompt: "Sunni jurisprudence is derived from the Quran, hadith, {{c0: juristic consensus}}, and analogical reasoning.",
|
|
929
|
+
options: [
|
|
930
|
+
{ option: "juristic consensus", cloze: "c0" },
|
|
931
|
+
{ option: "personal opinion", cloze: "null" },
|
|
932
|
+
{ option: "cultural practice", cloze: "null" },
|
|
933
|
+
{ option: "political authority", cloze: "null" },
|
|
934
|
+
],
|
|
935
|
+
},
|
|
936
|
+
concepts: [
|
|
937
|
+
{
|
|
938
|
+
concept_text: "Sunni jurisprudence and its sources",
|
|
939
|
+
reference: "Sunni Islam#Jurisprudence",
|
|
940
|
+
},
|
|
941
|
+
],
|
|
942
|
+
facts: [],
|
|
943
|
+
bloom_level: 3,
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
type: "cloze",
|
|
947
|
+
card_content: {
|
|
948
|
+
prompt: "One of the most important teaching institutions of Sunni Islam worldwide is the {{c0: Azhar}} in Egypt.",
|
|
949
|
+
options: [
|
|
950
|
+
{ option: "Azhar", cloze: "c0" },
|
|
951
|
+
{ option: "Al-Haram", cloze: "null" },
|
|
952
|
+
{ option: "Al-Aqsa", cloze: "null" },
|
|
953
|
+
{ option: "Blue Mosque", cloze: "null" },
|
|
954
|
+
],
|
|
955
|
+
},
|
|
956
|
+
concepts: [
|
|
957
|
+
{
|
|
958
|
+
concept_text: "Sunni organizations and institutions",
|
|
959
|
+
reference: "Sunni Islam#Sunni State institutions",
|
|
960
|
+
},
|
|
961
|
+
],
|
|
962
|
+
facts: [
|
|
963
|
+
{
|
|
964
|
+
fact_text: "Azhar University is a leading Sunni institution.",
|
|
965
|
+
reference: "Sunni Islam#Sunni State institutions",
|
|
966
|
+
},
|
|
967
|
+
],
|
|
968
|
+
bloom_level: 2,
|
|
969
|
+
},
|
|
970
|
+
],
|
|
971
|
+
},
|
|
972
|
+
generated_at: "2024-09-11T08:26:12.000Z",
|
|
973
|
+
};
|
|
974
974
|
//# sourceMappingURL=source_data.js.map
|