{"id":22938414,"url":"https://github.com/jacraig/spellchekr","last_synced_at":"2025-08-12T18:33:20.903Z","repository":{"id":141486563,"uuid":"256368343","full_name":"JaCraig/SpellChekr","owner":"JaCraig","description":"Basic spell checker","archived":false,"fork":false,"pushed_at":"2024-10-29T20:46:00.000Z","size":20486,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-29T22:48:56.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jacraig.github.io/SpellChekr/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JaCraig.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-17T01:16:23.000Z","updated_at":"2024-10-29T20:46:03.000Z","dependencies_parsed_at":"2024-04-01T21:45:09.398Z","dependency_job_id":"c088f1a7-dd84-40a2-9c19-8f7ef1f59653","html_url":"https://github.com/JaCraig/SpellChekr","commit_stats":null,"previous_names":[],"tags_count":99,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaCraig%2FSpellChekr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaCraig%2FSpellChekr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaCraig%2FSpellChekr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JaCraig%2FSpellChekr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JaCraig","download_url":"https://codeload.github.com/JaCraig/SpellChekr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229700201,"owners_count":18109933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-14T12:17:52.346Z","updated_at":"2024-12-14T12:17:52.980Z","avatar_url":"https://github.com/JaCraig.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpellChekr\nBasic spell checker. The system is based on [Peter Norvig's](http://norvig.com/spell-correct.html) spelling suggestion system.\n\n[![.NET Publish](https://github.com/JaCraig/SpellChekr/actions/workflows/dotnet-publish.yml/badge.svg)](https://github.com/JaCraig/SpellChekr/actions/workflows/dotnet-publish.yml) [![Coverage Status](https://coveralls.io/repos/github/JaCraig/SpellChekr/badge.svg?branch=master)](https://coveralls.io/github/JaCraig/SpellChekr?branch=master)\n\n## Usage\nIn order to use it you need to declare a dictionary:\n\n    public class ExampleSpellChecker : SpellingDictionaryBase\n    {\n        public ExampleSpellChecker(ObjectPool\u003cStringBuilder\u003e objectPool)\n            : base(Words, objectPool)\n        {\n        }\n        \n        public override string Name =\u003e \"Example\";\n\n        private static readonly string[] Words = new string[]\n        {\n          \"Word1\",\n          \"Word2\"\n          ...\n          \"Word9999999\"\n        }\n      }\n      \nAnd then set it up on the service collection along with the SpellChecker class:\n\n    ServiceCollection.AddSpellChecker();\n\nOr if you are using Canister:\n\n    ServiceCollection.AddCanisterModules();\n    \nFrom there you just use the SpellChecker class:\n\n    string Output=SpellChecker.GetDictionary(\"Example\").Correct(input);\n    \nThe GetDictionary method takes in the name of the dictionary that you wish to use and Correct takes the words that you wish to check.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacraig%2Fspellchekr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacraig%2Fspellchekr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacraig%2Fspellchekr/lists"}