From: Elliot Jay Stocks Date: Wed, 30 Nov 2022 13:13:07 +0000 (+0000) Subject: GFK Q4 SVG optimization (#5646) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dc9d63aaa41e9a41bf1389dcf064a38233ace7d;p=thirdparty%2Fgoogle%2Ffonts.git GFK Q4 SVG optimization (#5646) * Update authenticity_ex1_1.svg * Add a check to knowledge_graph.py for SVGs stop[offset] is a required attribute. * Add missing attribute stop[offset] to SVGs * Optimized illos for `how_to_make_type_feel_authentic` * Optimized illos for `from_type_to_logotype` * Optimized illos for `vertical_spacing...` * Optimized illos for `how_typefaces...` * Optimized illos for `pairing_typefaces_based...` * Optimized illos for `how_type_influences_readability` * Optimized illos for `introducing_accessibility_in_typography` * Optimized illos for `display_type` * Optimized illos for `from_metal_to_digital` * Optimized illos for `modern_type` * Optimized illos for `cjk_typesetting_rules` + EDIT of 02.svg * Optimized illos for `japanese_typography_basics` * Optimized illos for `the_evolution_of_hangeul_type_design` * Optimized illos for `type_classification_in_cjk_chinese` * Optimized illos for `type_classification_in_cjk_japanese` * Optimized illos for `type_classification_in_cjk_korean` * Removing duplicated SVGs in `type_classification_in_cjk_korean` * Removing duplicated SVGs in `type_classification_in_cjk_japanese` * Removing duplicated SVGs in `type_classification_in_cjk_chinese` Co-authored-by: nathan-williams --- diff --git a/.github/workflows/knowledge_graph.py b/.github/workflows/knowledge_graph.py index b72fd002d4..b226771172 100644 --- a/.github/workflows/knowledge_graph.py +++ b/.github/workflows/knowledge_graph.py @@ -241,11 +241,11 @@ def _check_proto_files(knowledge: KnowledgeContent) -> bool: def _is_svg(image_file: Path) -> bool: - return image_file.suffix == '.svg' + return image_file.suffix == ".svg" def _is_svg(image_file: Path) -> bool: - return image_file.suffix == '.svg' + return image_file.suffix == ".svg" def _check_image_files(knowledge: KnowledgeContent) -> bool: @@ -265,6 +265,10 @@ def _check_image_files(knowledge: KnowledgeContent) -> bool: if not has_view_box and not has_width_and_height: print("Must specify viewBox and/or width+height on :", image_file.relative_to(knowledge.knowledge_dir)) result = False + for stopEl in root.getElementsByTagName("stop"): + if "offset" not in stopEl.attributes: + print("Must specify offset on :", image_file.relative_to(knowledge.knowledge_dir)) + result = False else: if image_file.stat().st_size > MAX_RASTER_IMAGE_SIZE_KB * 1024: print("File exceeds max size of %s KB:" % MAX_RASTER_IMAGE_SIZE_KB, image_file.relative_to(knowledge.knowledge_dir)) diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-sans-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-sans-serif.svg index 031b9d0f2d..9f9110779a 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-sans-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-sans-serif.svg @@ -1,38 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif-all-sans-serif--with-form-models.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif-all-sans-serif--with-form-models.svg index e499923589..74d5be954c 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif-all-sans-serif--with-form-models.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif-all-sans-serif--with-form-models.svg @@ -1,74 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif.svg index 60704d07e7..3f120c1062 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/all-serif.svg @@ -1,34 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-1-2.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-1-2.svg index 26e09aa4ed..6f0e1a66a7 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-1-2.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-1-2.svg @@ -1,79 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-3-to-5.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-3-to-5.svg index 1ba4bcf4a0..e5f0a2fc8b 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-3-to-5.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-3-to-5.svg @@ -1,108 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-6.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-6.svg index f9beb6ba23..9ae30c8768 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-6.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-6.svg @@ -1,109 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-7.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-7.svg index fcf6dda9bc..0c3ab97475 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-7.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/combine-fonts-example-step-7.svg @@ -1,259 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--contrasting-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--contrasting-serif.svg index 7241766dd4..410d76a36b 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--contrasting-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--contrasting-serif.svg @@ -1,45 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--linear-sans.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--linear-sans.svg index 3d88f0ddaf..9f4abc347b 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--linear-sans.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/dynamic--linear-sans.svg @@ -1,45 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/exceptions-of-the-matrix.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/exceptions-of-the-matrix.svg index 969db5a9fd..08d3f4f798 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/exceptions-of-the-matrix.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/exceptions-of-the-matrix.svg @@ -1,85 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-avoid-same-flesh.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-avoid-same-flesh.svg index 55a4e97b86..3d9fef117a 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-avoid-same-flesh.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-avoid-same-flesh.svg @@ -1,177 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-contrasting.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-contrasting.svg index 683278283e..0e1f92a2bf 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-contrasting.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-contrasting.svg @@ -1,179 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-same-form-model.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-same-form-model.svg index f46d437a73..70c313773a 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-same-form-model.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix--pair-same-form-model.svg @@ -1,183 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-layers.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-layers.svg index 318bb0fb48..f397739d78 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-layers.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-layers.svg @@ -1,86 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-thumb.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-thumb.svg index 2ee0adbced..420a5bd018 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-thumb.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix-thumb.svg @@ -1,101 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix.svg index 52ad7ae410..5b0950ebe6 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/font-matrix.svg @@ -1,174 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-sans-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-sans-serif.svg index eb42f3d1b7..6ff01f81aa 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-sans-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-sans-serif.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-serif.svg index d63bcc4952..29a7958a0b 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/form-model-serif.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--contrasting-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--contrasting-serif.svg index 30c8f98f6f..190c3b4f69 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--contrasting-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--contrasting-serif.svg @@ -1,64 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--linear-sans.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--linear-sans.svg index 3e47614a27..94822d9eea 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--linear-sans.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/geometric--linear-sans.svg @@ -1,66 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/look-for-form-models.jpg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/look-for-form-models.jpg index 10c98bbc0b..c3395b3a83 100644 Binary files a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/look-for-form-models.jpg and b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/look-for-form-models.jpg differ diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif--addional-descriptors.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif--addional-descriptors.svg index 6c3c6de6c5..d1775ff2e4 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif--addional-descriptors.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif--addional-descriptors.svg @@ -1,82 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif.svg index 92e1d10b11..43b34270f8 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--contrasting-serif.svg @@ -1,47 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--linear-sans.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--linear-sans.svg index 782628b8a1..d628457bb6 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--linear-sans.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/rational--linear-sans.svg @@ -1,47 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/roboto-slab--quite-rational.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/roboto-slab--quite-rational.svg index 2ecf6ee081..cbee4627b3 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/roboto-slab--quite-rational.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/roboto-slab--quite-rational.svg @@ -1,46 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/thumbnail.svg b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/thumbnail.svg index d63bcc4952..29a7958a0b 100644 --- a/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/choosing_type/lessons/pairing_typefaces_based_on_their_construction_using_the_font_matrix/images/thumbnail.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.1.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.1.svg index 9f231c8a9e..70f851c986 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.1.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.1.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.2.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.2.svg index 1cb63b5d8f..5a57a93278 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.2.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.2.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.3.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.3.svg index 290b01a1cb..fee026b1d2 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.3.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.3.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.4.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.4.svg index 0a2402a55a..1b35650c4a 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.4.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/display_type/images/GFKhistoftype5.4.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.1.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.1.svg index ff132aca84..e7deba671d 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.1.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.1.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.2.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.2.svg index dc49ae8a2e..585fa70b1a 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.2.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.2.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.3.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.3.svg index ef9b2c69bd..854033573a 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.3.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.3.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.4.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.4.svg index bd8f96750a..bcc7793f83 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.4.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/from_metal_to_digital/images/GFKhistoftype6.4.svg @@ -1,64 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.1.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.1.svg index cdfe14851e..14d37b497a 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.1.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.1.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.2.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.2.svg index 82648bb82a..f0562be0de 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.2.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.2.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.3.svg b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.3.svg index 56fe1076c9..c79bfb17b8 100644 --- a/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.3.svg +++ b/cc-by-sa/knowledge/modules/history_of_type/lessons/modern_type/images/GFKhistoftype4.3.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/1MontageofTypefaces.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/1MontageofTypefaces.svg index ea79166ee8..95e9363b7a 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/1MontageofTypefaces.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/1MontageofTypefaces.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/2Checklist.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/2Checklist.svg index 6bcebac955..920ed5bb85 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/2Checklist.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/2Checklist.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/3SketchedType.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/3SketchedType.svg index 694a4f07c4..0cfb769a14 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/3SketchedType.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/3SketchedType.svg @@ -1,39 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/4Beziercurve.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/4Beziercurve.svg index 5abd5d1fd6..3d429b34a4 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/4Beziercurve.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/4Beziercurve.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/5Sidebearings.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/5Sidebearings.svg index ca266de767..7b26727cff 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/5Sidebearings.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/5Sidebearings.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/6SpecimenExample.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/6SpecimenExample.svg index 121f6e81c6..e36b02dbff 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/6SpecimenExample.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/6SpecimenExample.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_alternates.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_alternates.svg index 446b20e09e..ff002c9190 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_alternates.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_alternates.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_masters.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_masters.svg index fb70ae8261..f08ff4801a 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_masters.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/existing_masters.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/thumbnail.svg b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/thumbnail.svg index 5abd5d1fd6..3d429b34a4 100644 --- a/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/introducing_type/lessons/how_typefaces_are_designed_and_fonts_are_made/images/thumbnail.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_01.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_01.svg index 8db25675d5..d79edcc649 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_01.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_01.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_02.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_02.svg index 2a140662f8..472ce7ea62 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_02.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_02.svg @@ -1,53 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_03.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_03.svg index e512d7a7a7..89f222297e 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_03.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_03.svg @@ -1,31 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_04.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_04.svg index ca9bcf0d46..ee99c18934 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_04.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_04.svg @@ -1,35 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_05.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_05.svg index 76b485d5e8..ea0d1f78e0 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_05.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_05.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_06.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_06.svg index bb6effd150..362f86bb06 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_06.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_06.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_08.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_08.svg index 7ef3493e6d..ac896cf03a 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_08.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_08.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_09.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_09.svg index 95b065f7f5..daa4056f8b 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_09.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/readability_09.svg @@ -1,44 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/thumbnail.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/thumbnail.svg index e512d7a7a7..89f222297e 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/how_type_influences_readability/images/thumbnail.svg @@ -1,31 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_2.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_2.svg index 484acc5f72..7cb7394646 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_2.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_3.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_3.svg index a9cc984e40..30f4d659dc 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_3.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_4.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_4.svg index c49d054b7a..b2df64ab86 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_4.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_5.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_5.svg index 43ec3664d9..20537a8e00 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_5.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_6.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_6.svg index dcc26c24ef..318be98cad 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_6.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_7.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_7.svg index 71ce93446b..f185bd3686 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_7.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_7.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_8.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_8.svg index f7f83ab917..31d83ba34f 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_8.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/accessibility_8.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/thumbnail.svg b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/thumbnail.svg index 6976dfe8f1..3c4f392508 100644 --- a/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/readability_and_accessibility/lessons/introducing_accessibility_in_typography/images/thumbnail.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/01.svg index 9eec2b35c7..b6052a9675 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/01.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/01.svg @@ -1,44 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/02.svg index ea15c0b2c1..1c384c1b58 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/02.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/02.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/03.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/03.svg index fcbbc1ac3f..0a37f10ab0 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/03.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/03.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/04.svg index 83f1c8e23a..8a9529ae9a 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/04.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/04.svg @@ -1,39 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/05.svg index f58a1c22b2..fcad58787b 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/05.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/05.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/thumbnail.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/thumbnail.svg index fcbbc1ac3f..0a37f10ab0 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/cjk_typesetting_rules/images/thumbnail.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/01.svg index d51f8e6e33..8d9d943add 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/01.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/01.svg @@ -1,32 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/02.svg index be73cd4cc7..2878da3b8f 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/02.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/02.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/03.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/03.svg index e0a1e855a2..1f53966683 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/03.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/03.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/04.svg index a6ba5389f7..aef02eba57 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/04.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/04.svg @@ -1,44 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/05.svg index fb8363990a..dc54e1a71b 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/05.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/05.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/06.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/06.svg index de2ca20443..36de3255f1 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/06.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/06.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/07.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/07.svg index 6cb40a6b44..bab1f894ad 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/07.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/japanese_typography_basics/images/07.svg @@ -1,28 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/01.svg index 26b0605ed9..51440fc0e4 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/01.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/01.svg @@ -1,68 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/02.svg index a693127d4f..3e16564ac6 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/02.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/02.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/03.jpg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/03.jpg index 3d1852f8ed..a12106fbd0 100644 Binary files a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/03.jpg and b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/03.jpg differ diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/04.svg index 43d05ec6e0..9683149754 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/04.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/04.svg @@ -1,185 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/05.svg index ad81708a5e..735fa57de2 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/05.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/05.svg @@ -1,116 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/06.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/06.svg index ad819694e2..efd0ee84a5 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/06.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/06.svg @@ -1,181 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/07.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/07.svg index 219bcf2798..0c9f50b6c5 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/07.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/the_evolution_of_hangeul_type_design/images/07.svg @@ -1,154 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/01.svg deleted file mode 100644 index d9553d7c0b..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/01.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/02.svg deleted file mode 100644 index 860e886a2b..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/02.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/03.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/03.svg deleted file mode 100644 index ccfda50fdc..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/03.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/04.svg deleted file mode 100644 index e6156cc1f9..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/04.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/05.svg deleted file mode 100644 index 1a9151be4a..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/05.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/06.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/06.svg deleted file mode 100644 index 59c7978e25..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/06.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/07.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/07.svg deleted file mode 100644 index 2cb6fc2afd..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/07.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/08.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/08.svg deleted file mode 100644 index d1444854af..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/08.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/09.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/09.svg deleted file mode 100644 index f632aa04b7..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/09.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/A_kaiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/A_kaiti.svg index b9aae84ef3..38b5ea28a6 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/A_kaiti.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/A_kaiti.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/B_handwritten_cursive.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/B_handwritten_cursive.svg index ccbba1ec96..b91d7fb2af 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/B_handwritten_cursive.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/B_handwritten_cursive.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/C_songti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/C_songti.svg index 5567544de7..606c48c750 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/C_songti.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/C_songti.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/D_fangsongti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/D_fangsongti.svg index 2d36a52d73..5ef630c116 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/D_fangsongti.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/D_fangsongti.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/E_heiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/E_heiti.svg index 910de511b9..d2629e7471 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/E_heiti.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/E_heiti.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/F_yuanti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/F_yuanti.svg index 8be6360434..54fdcfce87 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/F_yuanti.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/F_yuanti.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/G_decorative_artistic.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/G_decorative_artistic.svg index 265fc5a1ea..4d209277a4 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/G_decorative_artistic.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/G_decorative_artistic.svg @@ -1,23 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/thumbnail.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/thumbnail.svg index ac1c701cab..7fb5a64489 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_chinese/images/thumbnail.svg @@ -1,26 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/01.svg index d9553d7c0b..2eb50672a8 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/01.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/01.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/02.svg index 860e886a2b..2c806c2b4a 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/02.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/02.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/03.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/03.svg index ccfda50fdc..774548e516 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/03.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/03.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/04.svg index e6156cc1f9..e91ca3a479 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/04.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/04.svg @@ -1,28 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/05.svg index 1a9151be4a..4c7c6ce0e2 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/05.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/05.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/06.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/06.svg deleted file mode 100644 index 59c7978e25..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/06.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/07.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/07.svg deleted file mode 100644 index 2cb6fc2afd..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/07.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/08.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/08.svg deleted file mode 100644 index d1444854af..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/08.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/09.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/09.svg deleted file mode 100644 index f632aa04b7..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/09.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/A_kaiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/A_kaiti.svg deleted file mode 100644 index b9aae84ef3..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/A_kaiti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/B_handwritten_cursive.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/B_handwritten_cursive.svg deleted file mode 100644 index ccbba1ec96..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/B_handwritten_cursive.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/C_songti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/C_songti.svg deleted file mode 100644 index 5567544de7..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/C_songti.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/D_fangsongti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/D_fangsongti.svg deleted file mode 100644 index 2d36a52d73..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/D_fangsongti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/E_heiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/E_heiti.svg deleted file mode 100644 index 910de511b9..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/E_heiti.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/F_yuanti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/F_yuanti.svg deleted file mode 100644 index 8be6360434..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/F_yuanti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/G_decorative_artistic.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/G_decorative_artistic.svg deleted file mode 100644 index 265fc5a1ea..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/G_decorative_artistic.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/thumbnail.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/thumbnail.svg index 3b3f0c1c08..5e32609a19 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_japanese/images/thumbnail.svg @@ -1,24 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/01.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/01.svg deleted file mode 100644 index d9553d7c0b..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/01.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/02.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/02.svg deleted file mode 100644 index 860e886a2b..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/02.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/03.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/03.svg deleted file mode 100644 index ccfda50fdc..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/03.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/04.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/04.svg deleted file mode 100644 index e6156cc1f9..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/04.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/05.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/05.svg deleted file mode 100644 index 1a9151be4a..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/05.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/06.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/06.svg index 59c7978e25..c32334d851 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/06.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/06.svg @@ -1,26 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/07.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/07.svg index 2cb6fc2afd..8841acf1de 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/07.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/07.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/08.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/08.svg index d1444854af..a719d7e95a 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/08.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/08.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/09.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/09.svg index f632aa04b7..e841fe590d 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/09.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/09.svg @@ -1,25 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/A_kaiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/A_kaiti.svg deleted file mode 100644 index b9aae84ef3..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/A_kaiti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/B_handwritten_cursive.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/B_handwritten_cursive.svg deleted file mode 100644 index ccbba1ec96..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/B_handwritten_cursive.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/C_songti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/C_songti.svg deleted file mode 100644 index 5567544de7..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/C_songti.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/D_fangsongti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/D_fangsongti.svg deleted file mode 100644 index 2d36a52d73..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/D_fangsongti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/E_heiti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/E_heiti.svg deleted file mode 100644 index 910de511b9..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/E_heiti.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/F_yuanti.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/F_yuanti.svg deleted file mode 100644 index 8be6360434..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/F_yuanti.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/G_decorative_artistic.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/G_decorative_artistic.svg deleted file mode 100644 index 265fc5a1ea..0000000000 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/G_decorative_artistic.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/thumbnail.svg b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/thumbnail.svg index 1a867fec58..9d74124ff4 100644 --- a/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/type_in_china_japan_and_korea/lessons/type_classification_in_cjk_korean/images/thumbnail.svg @@ -1,26 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/01_exploration.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/01_exploration.svg index bfffd51fca..4270edc42b 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/01_exploration.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/01_exploration.svg @@ -1,35 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/02_schematic.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/02_schematic.svg index 05613e1675..b32cbe214c 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/02_schematic.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/02_schematic.svg @@ -1,43 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/03_ligature.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/03_ligature.svg index 8981297f80..0bf76e89c5 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/03_ligature.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/03_ligature.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/04_holdingdevice.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/04_holdingdevice.svg index 839fd73e21..6e008ab6f6 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/04_holdingdevice.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/04_holdingdevice.svg @@ -1,46 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/05_angular.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/05_angular.svg index d259278c61..20f50ed0a2 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/05_angular.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/05_angular.svg @@ -1,39 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/06_refining.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/06_refining.svg index 04feb13a0a..339fbd956f 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/06_refining.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/06_refining.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/07_avatar.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/07_avatar.svg index 7f3858be03..9d8dc49017 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/07_avatar.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/07_avatar.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/09_typefaces.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/09_typefaces.svg index c9db8aa686..73761325b4 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/09_typefaces.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/09_typefaces.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/10_fontweights.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/10_fontweights.svg index d763f82bbd..8b692a4cd5 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/10_fontweights.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/10_fontweights.svg @@ -1,78 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/11_fontchoices.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/11_fontchoices.svg index 31e0076a11..16c15359f1 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/11_fontchoices.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/11_fontchoices.svg @@ -1,31 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/12_customisation.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/12_customisation.svg index 433cb7f481..87730216d1 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/12_customisation.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/12_customisation.svg @@ -1,61 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/13_construction.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/13_construction.svg index be3e611798..eae4d9f91f 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/13_construction.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/13_construction.svg @@ -1,37 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/14_earthmoon.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/14_earthmoon.svg index af878b1352..76093bc2c0 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/14_earthmoon.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/14_earthmoon.svg @@ -1,57 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/15_ligature.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/15_ligature.svg index 75d1c477cb..0141de19e5 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/15_ligature.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/15_ligature.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/16_logotype.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/16_logotype.svg index de65ae5e52..e5fe36364b 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/16_logotype.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/16_logotype.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/17_icon.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/17_icon.svg index 824b6fb3ba..f73fe39cc5 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/17_icon.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/17_icon.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/18_luna.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/18_luna.svg index beef2666f2..ac1d63c3cc 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/18_luna.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/18_luna.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/19_horizontal.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/19_horizontal.svg index 3540466e88..ed10ba6e8b 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/19_horizontal.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/19_horizontal.svg @@ -1,69 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/20_vertical.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/20_vertical.svg index 9424179682..e3b6d97730 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/20_vertical.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/20_vertical.svg @@ -1,78 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/21_A.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/21_A.svg index e2cb97f0ac..8869ca7fb6 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/21_A.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/21_A.svg @@ -1,23 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/22_scaling.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/22_scaling.svg index f72f61fae9..5dcd0fdb0f 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/22_scaling.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/22_scaling.svg @@ -1,140 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/23_roundels.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/23_roundels.svg index 1c3a83788e..109177d1e5 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/23_roundels.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/23_roundels.svg @@ -1,140 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/24_avatar.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/24_avatar.svg index 18cac3f46a..1cf516102e 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/24_avatar.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/24_avatar.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/thumbnail.svg b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/thumbnail.svg index 433cb7f481..87730216d1 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/from_type_to_logotype/images/thumbnail.svg @@ -1,61 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_1.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_1.svg index 3446ef751e..5ac2a52cd8 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_1.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_1.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_2.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_2.svg index a7ed7d863f..ec5fc02792 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_2.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_2.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_3.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_3.svg index bfa99dec08..5ca0ab3b59 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_3.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_3.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_EXTRA.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_EXTRA.svg index 0554853acd..9d453ac65b 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_EXTRA.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex1_EXTRA.svg @@ -1,45 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_1.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_1.svg index b6fe20da60..5af404baed 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_1.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_1.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_2.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_2.svg index 67b805e3db..22bb966acc 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_2.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_2.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_3.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_3.svg index 3c28dc9dbc..7e9285c29f 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_3.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_3.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_4.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_4.svg index 4f0e826b40..b2678ceb6b 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_4.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/authenticity_ex2_4.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/thumbnail.svg b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/thumbnail.svg index bfa99dec08..5ca0ab3b59 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/how_to_make_type_feel_authentic/images/thumbnail.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/the_foundations_of_web_typography/images/the_foundations_of_web_typography_6.svg b/cc-by-sa/knowledge/modules/using_type/lessons/the_foundations_of_web_typography/images/the_foundations_of_web_typography_6.svg index c1e0c267cc..8c57571f19 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/the_foundations_of_web_typography/images/the_foundations_of_web_typography_6.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/the_foundations_of_web_typography/images/the_foundations_of_web_typography_6.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/default-line-heights.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/default-line-heights.svg index 49e0e866c8..c757deec1d 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/default-line-heights.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/default-line-heights.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits-1.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits-1.svg index f173bf9230..8275d847a6 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits-1.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits-1.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits.svg index 561839f3b2..00333c5e67 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing-benefits.svg @@ -1,34 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing.svg index faad6566a5..52c9d9c2b7 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/equal-spacing.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/examples.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/examples.svg index 261ebcd285..bbce0cd3ea 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/examples.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/examples.svg @@ -1,81 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/manual-spacing.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/manual-spacing.svg index 6c3c55cf4e..08a6f7fab6 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/manual-spacing.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/manual-spacing.svg @@ -1,94 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/native-render.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/native-render.svg index 3ad8c409dc..60ffc4d33d 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/native-render.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/native-render.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/ratio.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/ratio.svg index 8ace3df749..b58e0f0c78 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/ratio.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/ratio.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/thumbnail.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/thumbnail.svg index 261ebcd285..bbce0cd3ea 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/thumbnail.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/thumbnail.svg @@ -1,81 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/web-render.svg b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/web-render.svg index 53ffba114d..54d77cc5e9 100644 --- a/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/web-render.svg +++ b/cc-by-sa/knowledge/modules/using_type/lessons/vertical_spacing_and_line_height_in_design_systems/images/web-render.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/introducing_ar_vr/images/introducing_ar_vr_4.svg b/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/introducing_ar_vr/images/introducing_ar_vr_4.svg index 40927ff2e5..4821d6c87a 100644 --- a/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/introducing_ar_vr/images/introducing_ar_vr_4.svg +++ b/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/introducing_ar_vr/images/introducing_ar_vr_4.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/spatial_classification_of_typography_in_ar_vr/images/spatial_classification_of_typography_in_ar_vr_6.svg b/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/spatial_classification_of_typography_in_ar_vr/images/spatial_classification_of_typography_in_ar_vr_6.svg index 2c015ade77..02e308d250 100644 --- a/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/spatial_classification_of_typography_in_ar_vr/images/spatial_classification_of_typography_in_ar_vr_6.svg +++ b/cc-by-sa/knowledge/modules/using_type_in_ar_and_vr/lessons/spatial_classification_of_typography_in_ar_vr/images/spatial_classification_of_typography_in_ar_vr_6.svg @@ -1 +1 @@ - \ No newline at end of file +