{"id":17471295,"url":"https://github.com/breuleux/quaint","last_synced_at":"2025-07-24T07:34:10.491Z","repository":{"id":26262517,"uuid":"29709766","full_name":"breuleux/quaint","owner":"breuleux","description":"The Quaint markup language","archived":false,"fork":false,"pushed_at":"2022-07-30T01:13:35.000Z","size":3144,"stargazers_count":34,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-09T15:12:37.079Z","etag":null,"topics":["markup-language","quaint"],"latest_commit_sha":null,"homepage":"http://breuleux.github.io/quaint/","language":"q","has_issues":true,"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/breuleux.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-01-23T01:14:01.000Z","updated_at":"2025-06-03T14:20:15.000Z","dependencies_parsed_at":"2022-08-26T17:30:14.445Z","dependency_job_id":null,"html_url":"https://github.com/breuleux/quaint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/breuleux/quaint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breuleux%2Fquaint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breuleux%2Fquaint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breuleux%2Fquaint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breuleux%2Fquaint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/breuleux","download_url":"https://codeload.github.com/breuleux/quaint/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breuleux%2Fquaint/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266808556,"owners_count":23987450,"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-07-24T02:00:09.469Z","response_time":99,"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":["markup-language","quaint"],"created_at":"2024-10-18T16:33:57.482Z","updated_at":"2025-07-24T07:34:10.411Z","avatar_url":"https://github.com/breuleux.png","language":"q","readme":"\nQuaint\n======\n\n[![Join the chat at https://gitter.im/breuleux/quaint](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/breuleux/quaint?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nQuaint is a markup language similar to Markdown, but more regular and\neasier to customize.\n\n**[Website](http://breuleux.github.io/quaint/)**\n\nQuaint is written in [Earl Grey](http://earl-grey.io)\n\n\nInstall\n-------\n\n    npm install quaint -g\n\nOnce installed, you can run `quaint` in a new directory to set up a\nproject. Plugins can be installed locally and configured with the\nfollowing command:\n\n    quaint --setup plugin-name\n\n[Usage documentation](http://breuleux.github.io/quaint/usage.html)\n\n\nSyntax\n------\n\n[Syntax](http://breuleux.github.io/quaint/syntax.html)\n\n\nPlugins\n-------\n\n[List of plugins](https://breuleux.github.io/quaint/plugins/index.html)\n\n\nCommand-line\n------------\n\n```\nUsage: quaint \u003cfile ...\u003e [options]\n\nOptions:\n  -c, --config          Path to a configuration file with option values (must be\n                        JSON)                           [default: \"quaint.json\"]\n  -d, --data            JSON string or file(s) defining field:value pairs to be\n                        made available inside markup (as {field}):\n                        * key:value\n                        * {\"key\": value, ...}\n                        * filename.json\n                        * prefix::filename.json\n  -e, --eval            Quaint string to parse directly\n  -f, --format          Format (only html currently supported)\n  -h, --help            Show help                                      [boolean]\n  --inline              Inline resources in the HTML\n  -o, --out             File or directory to save the output to\n  -p, --plugin          Plugin(s) to import:\n                        * Quaint file (injected at the beginning)\n                        * Path to JavaScript file\n                        * Local npm module\n                        * Global npm module\n  -r, --resources       Directory where to put the resources\n  --resources-url       URL for the resources directory\n  --serve               Start server on specified port, in output directory\n                                                                [default: false]\n  -s, --stdout          Print to standard out         [boolean] [default: false]\n  -t, --template        Name of the default template to use\n  --template-directory  Template directory\n  -v, --verbose         Print information about the operations performed\n                                                                       [boolean]\n  --setup               Set up and configure a plugin.          [default: false]\n  -w, --watch           Watch for changes to rebuild            [default: false]\n\n```\n\n\nAPI\n---\n\nSimple usage:\n\n```javascript\nvar quaint = require(\"quaint\");\nquaint.toHTML(\"Hello _italic __[bold words].\");\n// ==\u003e \"Hello \u003ci\u003eitalic\u003c/i\u003e \u003cb\u003ebold words\u003c/b\u003e\"\n```\n\nExtend with plugins:\n\n```javascript\nvar quaint = require(\"quaint\");\nvar qhl = require(\"quaint-highlight\");\nq = quaint(qhl({defaultLanguage: \"python\"}))\nq.toHTML(\"\u0026\\n  def python_function():\\n    return 1234\");\n// ==\u003e code block for python_function highlighted in Python\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreuleux%2Fquaint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbreuleux%2Fquaint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreuleux%2Fquaint/lists"}