浏览代码

Docs: Updated links with anchors. See ckeditor/ckeditor5#826. [skip ci]

Piotrek Koszuliński 7 年之前
父节点
当前提交
2698a960f6
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-theme-lark/docs/framework/guides/theme-customization.md

+ 2 - 2
packages/ckeditor5-theme-lark/docs/framework/guides/theme-customization.md

@@ -60,7 +60,7 @@ The entire process of building and managing the styles boils down to three steps
 
 ## Customization with CSS variables
 
-Having {@link builds/guides/development/custom-builds#Forking-an-existing-build cloned} an existing build of CKEditor for a quick start, let's use the full potential of CSS variables. The customization in this guide will make the theme dark, with slightly bigger text and more rounded corners.
+Having {@link builds/guides/development/custom-builds#forking-an-existing-build cloned} an existing build of CKEditor for a quick start, let's use the full potential of CSS variables. The customization in this guide will make the theme dark, with slightly bigger text and more rounded corners.
 
 <info-box hint>
 	Check out the [colors sheet](https://github.com/ckeditor/ckeditor5-theme-lark/blob/master/theme/ckeditor5-ui/globals/_colors.css) for the full list of customizable colors. You can also browse [other files](https://github.com/ckeditor/ckeditor5-theme-lark/blob/master/theme/ckeditor5-ui/globals) to learn about other useful tools.
@@ -170,7 +170,7 @@ This file can be referenced directly in HTML **after the `<link>` tag injected b
 <link rel="stylesheet" href="custom.css" type="text/css">
 ```
 
-Alternatively, the style sheet can also be imported into a JavaScript file that is processed by webpack and the [loaders](#Styles-processing-and-bundling) becoming part of the build, e.g. an entry point of the application.
+Alternatively, the style sheet can also be imported into a JavaScript file that is processed by webpack and the [loaders](#styles-processing-and-bundling) becoming part of the build, e.g. an entry point of the application.
 
 <info-box info>
 	Learn more about {@link framework/guides/quick-start building the editor using webpack}.