{"id":30127617,"url":"https://github.com/moeki0/wikitxt","last_synced_at":"2026-05-16T22:02:46.845Z","repository":{"id":233009130,"uuid":"785793785","full_name":"moeki0/wikitxt","owner":"moeki0","description":"A Lightweight Markup Language and Personal Wiki Platform","archived":false,"fork":false,"pushed_at":"2024-04-17T14:44:45.000Z","size":3829,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-08T23:08:10.778Z","etag":null,"topics":["html","markdown","markup","personal-knowledge-management","plaintext","ruby","wiki"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/wikitxt","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moeki0.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-12T16:29:24.000Z","updated_at":"2024-04-13T15:36:05.000Z","dependencies_parsed_at":"2024-04-17T15:43:56.120Z","dependency_job_id":null,"html_url":"https://github.com/moeki0/wikitxt","commit_stats":null,"previous_names":["kawakamimoeki/wikitxt","moekiorg/wikitxt","kawakamidev/wikitxt"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/moeki0/wikitxt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Fwikitxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Fwikitxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Fwikitxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Fwikitxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moeki0","download_url":"https://codeload.github.com/moeki0/wikitxt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Fwikitxt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33120450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["html","markdown","markup","personal-knowledge-management","plaintext","ruby","wiki"],"created_at":"2025-08-10T17:08:37.939Z","updated_at":"2026-05-16T22:02:46.830Z","avatar_url":"https://github.com/moeki0.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wiki.txt\n\n![v](https://badgen.net/rubygems/v/wikitxt)\n![dt](https://badgen.net/rubygems/dt/wikitxt)\n![license](https://badgen.net/github/license/kawakamimoeki/wikitxt)\n\nMost lightweight markup language and personal knowledge manager or wiki platform.\n\n![screenshot](https://github.com/kawakamimoeki/wikitxt/blob/main/docs/screenshot.png)\n\nWikitxt is a lightweight markup language and a tool for composing Wiki . The syntax of #Wikitxt can be converted to HTML and viewed in a browser. When converted to HTML, files can be interlinked.\n\nWikitxt is based on the format of lists and paragraphs. Most information can be expressed in list format, and the choice between lists and paragraphs is always changing as you write.\n\nText decoration is limited to mutual links using hashtags. By utilizing the decoration of mutual links, you can intentionally increase the number of pages in the wiki.\n\nIn summary, it's like this:\n\n- Lists\n  - Based on the idea that most information can be expressed in lists\n- Paragraphs\n  - Paragraphs always have the potential to be listed. They can easily be converted to lists.\n  - Paragraphs can also serve as headings.\n- Mutual Links\n  - Text decoration is limited to links.\n  - Words you want to emphasize should be expressed as wiki pages.\n\n## Installation\n\nInstall the gem and add to the application's Gemfile by executing:\n\n    $ bundle add wikitxt\n\nIf bundler is not being used to manage dependencies, install the gem by executing:\n\n    $ gem install wikitxt\n\n## Syntax\n\nParagraphs:\n\n```\nWikitxt is a lightweight markup language and a tool for composing Wiki . The syntax of Wikitxt can be converted to HTML and viewed in a browser. When converted to HTML, files can be interlinked.\n```\n\nLists:\n\n```\n  Lists\n    Based on the idea that most information can be expressed in lists\n  Paragraphs\n    Paragraphs always have the potential to be listed. They can easily be converted to lists.\n    Paragraphs can also serve as headings.\n  Mutual Links\n    Text decoration is limited to links.\n    Words you want to emphasize should be expressed as wiki pages.\n```\n\nInternal Links:\n\n```\n#internallink\n```\n\nInternal Images:\n\n```\n#internalimage.png\n```\n\nExternal Links:\n\n```\nhttps://example.com\n```\n\nExternal Images:\n\n```\nhttps://example.com/image.png\n```\n\nPre Blocks:\n\n```\n---\nclass Foo\n  def bar\n    p \"bar\"\n  end\nend\n---\n```\n\n## Usage\n\n### Render HTML\n\n```ruby\nWikitxt.to_html(text)\n```\n\n### Server\n\n`wiki/sample.txt`:\n\n```\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec mauris orci, euismod in tortor eu, condimentum pharetra libero.\n\nCras at tortor urna. Maecenas nec iaculis nulla.\n\n  Animals:\n    Elephant\n    Giraffe\n    Tiger\n    Penguin\n    Dolphin\n  Foods:\n    Pizza\n    Apple\n    Chocolate\n    Sushi\n    Broccoli\n```\n\n```\n$ wikitxt s wiki\n```\n\nAccess to http://localhost:4567 .\n\n### Build\n\n```\n$ wikitxt build wiki\n```\n\n### Search references\n\nInstall [ripgrep (rg)](https://github.com/BurntSushi/ripgrep)\n\n```\n$ rg \"#RDB\" .\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/kawakamimoeki/wikitxt. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/kawakamimoeki/wikitxt/blob/main/CODE_OF_CONDUCT.md).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the Wikitxt project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/kawakamimoeki/wikitxt/blob/main/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoeki0%2Fwikitxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoeki0%2Fwikitxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoeki0%2Fwikitxt/lists"}