[Groonga-commit] pgroonga/pgroonga at 8c1bcf8 [master] Use GFM for syntax hilight

Back to archive index

Kouhei Sutou null+****@clear*****
Sun May 24 19:01:18 JST 2015


Kouhei Sutou	2015-05-24 19:01:18 +0900 (Sun, 24 May 2015)

  New Revision: 8c1bcf80f1c9354d788e6357a5a6da7f0ab5e9bf
  https://github.com/pgroonga/pgroonga/commit/8c1bcf80f1c9354d788e6357a5a6da7f0ab5e9bf

  Message:
    Use GFM for syntax hilight

  Modified files:
    news.md

  Modified: news.md (+22 -14)
===================================================================
--- news.md    2015-05-24 18:56:55 +0900 (002efea)
+++ news.md    2015-05-24 19:01:18 +0900 (90aa7bd)
@@ -4,9 +4,11 @@
 
 You can't upgrade to 0.5.0 from 0.4.0 without re-creating `pgroonga` index. You need to re-install PGroonga:
 
-    DROP EXTENSION pgroonga CASCADE;
-    CREATE EXTENSION pgroonga;
-    -- Create your pgroonga indexes again.
+```sql
+DROP EXTENSION pgroonga CASCADE;
+CREATE EXTENSION pgroonga;
+-- Create your pgroonga indexes again.
+```
 
 ### Improvements
 
@@ -22,9 +24,11 @@ You can't upgrade to 0.5.0 from 0.4.0 without re-creating `pgroonga` index. You
 
 You can't upgrade to 0.4.0 from 0.3.0 without re-creating `pgroonga` index. You need to re-install PGroonga:
 
-    DROP EXTENSION pgroonga CASCADE;
-    CREATE EXTENSION pgroonga;
-    -- Create your pgroonga indexes again.
+```sql
+DROP EXTENSION pgroonga CASCADE;
+CREATE EXTENSION pgroonga;
+-- Create your pgroonga indexes again.
+```
 
 ### Improvements
 
@@ -53,20 +57,24 @@ You can't upgrade to 0.4.0 from 0.3.0 without re-creating `pgroonga` index. You
 
 You can't upgrade to 0.3.0 from 0.2.0 without re-creating `pgroonga` index. You need to re-install PGroonga:
 
-    DROP EXTENSION pgroonga CASCADE;
-    CREATE EXTENSION pgroonga;
-    -- Create your pgroonga indexes again.
+```sql
+DROP EXTENSION pgroonga CASCADE;
+CREATE EXTENSION pgroonga;
+-- Create your pgroonga indexes again.
+```
 
 ### Improvements
 
   * Supported encoding
   * Supported customizing tokenizer and normalizer by `WITH` such as:
 
-        CREATE INDEX pgroonga_index
-                  ON table
-               USING pgroonga (column)
-                WITH (tokenizer='TokenMecab',
-                      normalizer='NormalizerAuto');
+    ```sql
+    CREATE INDEX pgroonga_index
+              ON table
+           USING pgroonga (column)
+            WITH (tokenizer='TokenMecab',
+                  normalizer='NormalizerAuto');
+    ```
 
   * Reduced needless locks.
   * Supported column compression by LZ4.
-------------- next part --------------
HTML����������������������������...
Download 



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