{"id":16068060,"url":"https://github.com/ged/bluecloth","last_synced_at":"2025-09-17T23:50:37.450Z","repository":{"id":65987992,"uuid":"934096","full_name":"ged/bluecloth","owner":"ged","description":"A Ruby implementation of Markdown","archived":false,"fork":false,"pushed_at":"2019-08-17T17:24:01.000Z","size":950,"stargazers_count":80,"open_issues_count":1,"forks_count":19,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-02T03:59:28.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://deveiate.org/projects/BlueCloth","language":"Ruby","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ged.png","metadata":{"files":{"readme":"README.rdoc","changelog":"History.rdoc","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2010-09-23T18:08:30.000Z","updated_at":"2025-02-09T20:32:27.000Z","dependencies_parsed_at":"2023-04-14T04:30:30.564Z","dependency_job_id":null,"html_url":"https://github.com/ged/bluecloth","commit_stats":{"total_commits":169,"total_committers":2,"mean_commits":84.5,"dds":0.00591715976331364,"last_synced_commit":"91833b0cfeecb1af644bac427fef31af958bdba3"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/ged/bluecloth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fbluecloth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fbluecloth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fbluecloth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fbluecloth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ged","download_url":"https://codeload.github.com/ged/bluecloth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fbluecloth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275685535,"owners_count":25509531,"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","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-09T06:08:19.904Z","updated_at":"2025-09-17T23:50:37.410Z","avatar_url":"https://github.com/ged.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"= bluecloth 2\n\n* http://deveiate.org/projects/BlueCloth\n\n== Description\n\nBlueCloth is a Ruby implementation of John Gruber's\nMarkdown[http://daringfireball.net/projects/markdown/], a text-to-HTML\nconversion tool for web writers. To quote from the project page: Markdown\nallows you to write using an easy-to-read, easy-to-write plain text format,\nthen convert it to structurally valid XHTML (or HTML).\n\nIt borrows a naming convention and several helpings of interface from\n{Redcloth}[http://redcloth.org/], Why the Lucky Stiff's processor for a\nsimilar text-to-HTML conversion syntax called\nTextile[http://www.textism.com/tools/textile/].\n\nBlueCloth 2 is a complete rewrite using David Parsons'\nDiscount[http://www.pell.portland.or.us/~orc/Code/discount/] library, a C\nimplementation of Markdown. I rewrote it using the extension for speed and\naccuracy; the original BlueCloth was a straight port from the Perl version\nthat I wrote in a few days for my own use just to avoid having to shell out to\nMarkdown.pl, and it was quite buggy and slow. I apologize to all the good\npeople that sent me patches for it that were never released.\n\nNote that the new gem is called 'bluecloth' and the old one 'BlueCloth'. If\nyou have both installed, you can ensure you're loading the new one with the\n'gem' directive:\n\n\t# Load the 2.0 version\n\tgem 'bluecloth', '\u003e= 2.0.0'\n\t\n\t# Load the 1.0 version\n\tgem 'BlueCloth'\n\trequire 'bluecloth'\n\n\n== Installation\n\n\tgem install bluecloth\n\n\n== Contributing\n\nYou can check out the current development source {with\nMercurial}[http://repo.deveiate.org/BlueCloth], or if you prefer Git, via {its\nGithub mirror}[https://github.com/ged/bluecloth].\n\nAfter checking out the source, run:\n\n\t$ rake newb\n\nThis task will install any missing dependencies, run the tests/specs, and\ngenerate the API documentation.\n\n\n== Contributors\n\n* Martin Chase \u003cstillflame@FaerieMUD.org\u003e\n* Florian Gross \u003cflgr@ccan.de\u003e\n\nThe Discount code upon which BlueCloth is based was written by David Loren\nParsons.\n\n\n== License\n\nThis product includes software developed by David Loren \nParsons \u003chttp://www.pell.portland.or.us/~orc\u003e.\n\n-\u003eCopyright (C) 2007 David Loren Parsons.  \nAll rights reserved.\u003c-\n\nThe full Discount license may be found in the README.discount file included\nwith the distribution.\n\nAll other code:\n\nCopyright (c) 2004-2011, Michael Granger\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice,\n  this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of the author/s, nor the names of the project's\n  contributors may be used to endorse or promote products derived from this\n  software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fbluecloth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fged%2Fbluecloth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fbluecloth/lists"}