This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-513
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-website.git

commit 27abe04d615586bedeb95ab6150f6d78f2b8cbe8
Author: skhdl <[email protected]>
AuthorDate: Wed Oct 19 10:11:07 2022 +0400

    WIP.
---
 _includes/left-side-menu.html | 7 +++++++
 examples/light_switch_fr.html | 5 +----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/_includes/left-side-menu.html b/_includes/left-side-menu.html
index 1b9ffcb..1c22b51 100644
--- a/_includes/left-side-menu.html
+++ b/_includes/left-side-menu.html
@@ -145,6 +145,13 @@
         <a href="/examples/light_switch_fr.html">Light Switch FR</a>
         {% endif %}
     </li>
+    <li>
+        {% if page.id == "light_switch_ru" %}
+        <a class="active" href="/examples/light_switch_ru.html">Light Switch 
RU</a>
+        {% else %}
+        <a href="/examples/light_switch_ru.html">Light Switch RU</a>
+        {% endif %}
+    </li>
     <li>
         {% if page.id == "weather_bot" %}
         <a class="active" href="/examples/weather_bot.html">Weather Bot</a>
diff --git a/examples/light_switch_fr.html b/examples/light_switch_fr.html
index 29180f9..bde8512 100644
--- a/examples/light_switch_fr.html
+++ b/examples/light_switch_fr.html
@@ -175,11 +175,9 @@ fa_icon: fa-cube
             import com.google.gson.Gson
             import org.apache.nlpcraft.*
             import org.apache.nlpcraft.annotations.*
-
             import demo.nlp.entity.parser.NCFrSemanticEntityParser
             import demo.lightswitch.nlp.token.enricher.*
             import demo.lightswitch.nlp.token.parser.NCFrTokenParser
-
             import scala.jdk.CollectionConverters.*
 
             class LightSwitchFrModel extends NCModelAdapter(
@@ -282,7 +280,7 @@ fa_icon: fa-cube
         </pre>
         <p>
             <code>NCFrTokenParser</code> is simple wrapper, which implements 
<code>NCTokenParser</code> based on
-            open source solution <a href="https://languagetool.org";>Language 
Tool</a>  solution.
+            open source solution <a href="https://languagetool.org";>Language 
Tool</a> solution.
             On <code>line 19</code> <code>NCToken</code> instances created.
         </p>
 
@@ -384,7 +382,6 @@ fa_icon: fa-cube
                 new NCFrTokenParser(),
                 mdlSrcOpt = Option(src)
             )
-
         </pre>
         <p>
             <code>NCFrSemanticEntityParser</code> extends 
<code>NCSemanticEntityParser</code>

Reply via email to