[Groonga-commit] groonga/groonga.org at f700880 [gh-pages] blog: fix typos

Back to archive index

Yasuhiro Horimoto null+****@clear*****
Tue May 29 16:02:48 JST 2018


Yasuhiro Horimoto	2018-05-29 16:02:48 +0900 (Tue, 29 May 2018)

  New Revision: f7008800f84fec53a7e24b432d89dd9776e61777
  https://github.com/groonga/groonga.org/commit/f7008800f84fec53a7e24b432d89dd9776e61777

  Message:
    blog: fix typos

  Modified files:
    en/_posts/2018-05-29-groonga-8.0.3.md
    ja/_posts/2018-05-29-groonga-8.0.3.md

  Modified: en/_posts/2018-05-29-groonga-8.0.3.md (+13 -13)
===================================================================
--- en/_posts/2018-05-29-groonga-8.0.3.md    2018-05-29 15:57:12 +0900 (59497c5c)
+++ en/_posts/2018-05-29-groonga-8.0.3.md    2018-05-29 16:02:48 +0900 (8ea3fb0c)
@@ -15,23 +15,23 @@ How to install: [Install](/docs/install.html)
 
 Here are important changes in this release:
 
-  * [[highlight_html](docs/reference/functions/highlight_html)] Support highlight
+  * [[highlight_html](/docs/reference/functions/highlight_html)] Support highlight
     of results of the search by `NormalizerNFKC100` or `TokenNgram`.
-  * [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
+  * [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
     that `unify_middle_dot option`.
-  * [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
+  * [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
     that `unify_katakana_v_sounds option`.
-  * [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
+  * [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100`
     that `unify_katakana_bu_sound option`.
-  * [[sub_filter](docs/reference/functions/sub_filter)] Supported `sub_filter` optimization
+  * [[sub_filter](/docs/reference/functions/sub_filter)] Supported `sub_filter` optimization
     for the too filter case.
-  * [[delete](docs/reference/commands/delete)] Added new options that `limit`.
-  * [[normalizers](docs/reference/normalizers)] Fixed a bug that FULLWIDTH LATIN CAPITAL LETTERs
+  * [[delete](/docs/reference/commands/delete)] Added new options that `limit`.
+  * [[normalizers](/docs/reference/normalizers)] Fixed a bug that FULLWIDTH LATIN CAPITAL LETTERs
     such as `U+FF21 FULLWIDTH LATIN CAPITAL LETTER A` aren't normalized to LATIN SMALL LETTERs
     such as `U+0061 LATIN SMALL LETTER A`.
     If you have been used `NormalizerNFKC100` , you must recreate your indexes.
 
-### [[highlight_html](docs/reference/functions/highlight_html)] Support highlight of results of the search by `NormalizerNFKC100` or `TokenNgram`
+### [[highlight_html](/docs/reference/functions/highlight_html)] Support highlight of results of the search by `NormalizerNFKC100` or `TokenNgram`
 
 You can highlight of keyword that searched by `NormalizerNFKC100` or `TokenNgram` as below example.
 
@@ -71,7 +71,7 @@ select Entries   --match_columns body   --query 'グラム'   --output_columns '
 ]
 ```
 
-### [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that `unify_middle_dot option`
+### [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that `unify_middle_dot option`
 
 This option normalizes middle dot as below example.
 
@@ -105,7 +105,7 @@ normalize   'NormalizerNFKC100("unify_middle_dot", true)'   "·ᐧ•∙⋅⸱
 You can search with or without `・` (middle dot) and regardless of `・` (middle dot) position
 by this option.
 
-### [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that
+### [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that
 `unify_katakana_v_sounds option`
 
 This option normalizes `ヴァヴィヴヴェヴォ` (katakana) to `バビブベボ` (katakana) as below example.
@@ -137,7 +137,7 @@ normalize   'NormalizerNFKC100("unify_katakana_v_sounds", true)'   "ヴァヴィ
 
 For example, you can search `バイオリン` (violin) in `ヴァイオリン` (violin).
 
-### [[normalizers](docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that
+### [[normalizers](/docs/reference/normalizers)] Added new option for `NormalizerNFKC100` that
 `unify_katakana_bu_sound option`
 
 This option normalizes `ヴァヴィヴゥヴェヴォ` (katakana) to `ブ` (katakana) as below example.
@@ -169,7 +169,7 @@ normalize   'NormalizerNFKC100("unify_katakana_bu_sound", true)'   "ヴァヴィ
 
 For example, you can search `セーブル` (katakana) and `セーヴル` (katakana) in `セーヴェル` (katakana).
 
-### [[sub_filter](docs/reference/functions/sub_filter)] Supported `sub_filter` optimization for the too filter case
+### [[sub_filter](/docs/reference/functions/sub_filter)] Supported `sub_filter` optimization for the too filter case
 
 For example,this optimize is valid when records are enough narrowed down before
 `sub_filter` execution as below.
@@ -209,7 +209,7 @@ select Packages \
   --output_columns '_key, files, files.revision'
 ```
 
-### [[delete](docs/reference/commands/delete)] Added new options that `limit`
+### [[delete](/docs/reference/commands/delete)] Added new options that `limit`
 
 You can limit the number of deleting records with this option as below example.
 

  Modified: ja/_posts/2018-05-29-groonga-8.0.3.md (+2 -2)
===================================================================
--- ja/_posts/2018-05-29-groonga-8.0.3.md    2018-05-29 15:57:12 +0900 (84bf06fc)
+++ ja/_posts/2018-05-29-groonga-8.0.3.md    2018-05-29 16:02:48 +0900 (ed003ae2)
@@ -15,7 +15,7 @@ published: false
 
 主な変更点は以下の通りです。
 
-  * [[highlight_html](ja/docs/reference/functions/highlight_html)] `NormalizerNFKC100` または
+  * [[highlight_html](/ja/docs/reference/functions/highlight_html)] `NormalizerNFKC100` または
     `TokenNgram` を使って検索した結果のハイライトをサポートしました。
   * [[normalizers](/ja/docs/reference/normalizers)] `NormalizerNFKC100` に新しいオプション
     `unify_middle_dot option` を追加しました。
@@ -31,7 +31,7 @@ published: false
     されない不具合を修正しました。
     すでに、`NormalizerNFKC100` を使用している場合は、インデックスを再生成する必要があります。
 
-### [[highlight_html](ja/docs/reference/functions/highlight_html)] `NormalizerNFKC100` または `TokenNgram` を使って検索した結果のハイライトをサポートしました。
+### [[highlight_html](/ja/docs/reference/functions/highlight_html)] `NormalizerNFKC100` または `TokenNgram` を使って検索した結果のハイライトをサポートしました。
 
 以下の例のように、`NormalizerNFKC100` または `TokenNgram` を使った検索のキーワードをハイライト出来ます。
 
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20180529/ca58bea9/attachment-0001.htm 



More information about the Groonga-commit mailing list
Back to archive index