Skip to content

Commit

Permalink
Deploying to gh-pages from @ 25b8515 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Oct 11, 2024
1 parent c9f5fc6 commit 6143a07
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
4 changes: 2 additions & 2 deletions algorithms/danish/stemmer.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ <h2>The stemming algorithm</h2>
<DD>delete if preceded by a valid <B><I>s</I></B>-ending
</DL>
<p>
(Of course the letter of the valid <B><I>s</I></B>-ending is
not necessarily in <I>R</I>1)
(Note that only the suffix needs to be in <I>R</I>1, the letter of the
valid <B><I>s</I></B>-ending is not required to be.)
</p>
</DL>

Expand Down
5 changes: 3 additions & 2 deletions algorithms/finnish/stemmer.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,9 @@ <h2>Links to resources</h2>
</DL>

<p>
(Of course, the <B><I>n</I></B>, <B><I>t</I></B> or vowel of 1(<I>a</I>) need not be in <I>R</I>1: only
the suffix removed must be in <I>R</I>1. And similarly below.
Note that only the suffix needs to be in <I>R</I>1, the <B><I>n</I></B>,
<B><I>t</I></B> or vowel of 1(<I>a</I>) is not required to be.
And similarly below.
</p>

<p>
Expand Down
13 changes: 10 additions & 3 deletions algorithms/german/stemmer.html
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,17 @@ <h2>The stemming algorithm</h2>
(<I>b</I>) <B><I>ern &nbsp; er</I></B><BR>
(<I>c</I>) <B><I>e &nbsp; en &nbsp; es</I></B><BR>
(<I>d</I>) <B><I>s</I></B> (preceded by a valid <B><I>s</I></B>-ending)<BR>
(<I>e</I>) <B><I>ln &nbsp; lns</I></B> [added in Snowball 2.3.0]
(<I>e</I>) <B><I>erin &nbsp; erinnen</I></B> [added in Snowball 2.3.0]<BR>
(<I>f</I>) <B><I>ln &nbsp; lns</I></B> [added in Snowball 2.3.0]
</DL>
<p>
and if in <I>R</I>1 then delete (for (a) to (d)) or replace with <I>l</I> (for (e)). (Of course the letter of the valid <B><I>s</I></B>-ending is
not necessarily in <I>R</I>1.) If an ending of group (<I>c</I>) is deleted, and the ending
and if in <I>R</I>1 then delete (for (a) to (e)) or replace with <I>l</I> (for (f)).
(Note that only the suffix needs to be in <I>R</I>1, the letter of the
valid <B><I>s</I></B>-ending is not required to be.)
<p>

<p>
If an ending of group (<I>c</I>) is deleted, and the ending
is preceded by <B><I>niss</I></B>, delete the final <B><I>s</I></B>.
</p>

Expand Down Expand Up @@ -475,6 +481,7 @@ <h2>The same algorithm in Snowball</h2>
<span class="w"> </span><span class="ow">delete</span><span class="w"></span>
<span class="w"> </span><span class="p">)</span><span class="w"></span>
<span class="w"> </span><span class="s1">&#39;ern&#39;</span><span class="w"> </span><span class="s1">&#39;er&#39;</span><span class="w"></span>
<span class="w"> </span><span class="s1">&#39;erin&#39;</span><span class="w"> </span><span class="s1">&#39;erinnen&#39;</span><span class="w"> </span><span class="c1">// conflate female versions of nouns</span><span class="w"></span>
<span class="w"> </span><span class="p">(</span><span class="w"> </span><span class="ow">delete</span><span class="w"></span>
<span class="w"> </span><span class="p">)</span><span class="w"></span>
<span class="w"> </span><span class="s1">&#39;e&#39;</span><span class="w"> </span><span class="s1">&#39;en&#39;</span><span class="w"> </span><span class="s1">&#39;es&#39;</span><span class="w"></span>
Expand Down
4 changes: 2 additions & 2 deletions algorithms/norwegian/stemmer.html
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ <h2>The stemming algorithm</h2>
<DD>replace with <B><I>er</I></B>
</DL>
<p>
(Of course the letter of the valid <B><I>s</I></B>-ending is
not necessarily in <I>R</I>1)
(Note that only the suffix needs to be in <I>R</I>1, the letter of the
valid <B><I>s</I></B>-ending is not required to be.)
</p>
</DL>

Expand Down
4 changes: 2 additions & 2 deletions algorithms/swedish/stemmer.html
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ <h2>The stemming algorithm</h2>
<B><I>s</I></B>
<DD>delete if preceded by a valid <B><I>s</I></B>-ending
</DL>
(Of course the letter of the valid <B><I>s</I></B>-ending is
not necessarily in <I>R</I>1)
(Note that only the suffix needs to be in <I>R</I>1, the letter of the
valid <B><I>s</I></B>-ending is not required to be.)
</DL>

<p>
Expand Down
3 changes: 1 addition & 2 deletions compiler/snowman.html
Original file line number Diff line number Diff line change
Expand Up @@ -1427,8 +1427,7 @@ <h2>11 Comments, and other whitespace fillers</h2>
cannot form part of it. A symbol is recognised as the longest sequence of
characters that forms a valid symbol. So &nbsp;<code>+=-</code>&nbsp; is two symbols, &nbsp;<code>+=</code>&nbsp; and
<code>-</code>, because &nbsp;<code>+=</code>&nbsp; is a valid symbol in the language while &nbsp;<code>+=-</code>&nbsp; is not.
Whitespace separates tokens but is otherwise ignored. This of course is
like C.
Whitespace separates tokens but is otherwise ignored.
</p>

<p>
Expand Down

0 comments on commit 6143a07

Please sign in to comment.