Fixed help files.
This commit is contained in:
commit
b8f912cc79
1543 changed files with 395123 additions and 0 deletions
16
PluginFramework/Tokenizer.cs
Normal file
16
PluginFramework/Tokenizer.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using ScrewTurn.Wiki.SearchEngine;
|
||||
|
||||
namespace ScrewTurn.Wiki.PluginFramework {
|
||||
|
||||
/// <summary>
|
||||
/// Defines a delegate that tokenizes strings.
|
||||
/// </summary>
|
||||
/// <param name="content">The content to tokenize.</param>
|
||||
/// <returns>The tokenized words.</returns>
|
||||
public delegate WordInfo[] Tokenizer(string content);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue