{"id":43840292,"url":"https://github.com/answerdotai/mistlefoot","last_synced_at":"2026-02-14T02:05:20.082Z","repository":{"id":333572991,"uuid":"1137815567","full_name":"AnswerDotAI/mistlefoot","owner":"AnswerDotAI","description":"Extended markdown features for mistletoe, including subscript, superscript, highlighting, emojis, footnotes, task lists, and more.","archived":false,"fork":false,"pushed_at":"2026-01-28T07:16:32.000Z","size":407,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-28T19:31:08.489Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://answerdotai.github.io/mistlefoot/","language":"Jupyter Notebook","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/AnswerDotAI.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-19T21:54:07.000Z","updated_at":"2026-01-28T07:16:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/AnswerDotAI/mistlefoot","commit_stats":null,"previous_names":["answerdotai/mistlefoot"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/AnswerDotAI/mistlefoot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Fmistlefoot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Fmistlefoot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Fmistlefoot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Fmistlefoot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnswerDotAI","download_url":"https://codeload.github.com/AnswerDotAI/mistlefoot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Fmistlefoot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29151544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T02:39:25.012Z","status":"ssl_error","status_checked_at":"2026-02-06T02:37:22.784Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2026-02-06T05:01:00.284Z","updated_at":"2026-02-06T05:01:16.471Z","avatar_url":"https://github.com/AnswerDotAI.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mistlefoot\n\n\n\u003c!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! --\u003e\n\n## Installation\n\n``` bash\npip install mistlefoot\n```\n\n## Features\n\n- **Subscript \u0026 Superscript**: `H~2~O` and `E=mc^2^`\n- **Highlighting**: `==marked text==`\n- **Strikethrough**: `~~deleted text~~`\n- **Emojis**: `:smile:` `:rocket:` `:heart:` (50+ supported)\n- **Auto-linking**: URLs automatically become clickable links\n- **Footnotes**: `Reference[^1]` with definitions\n- **Task lists**: GitHub-style checkboxes\n- **Heading attributes**: Add IDs, classes, and custom attributes to\n  headings\n\n## Usage\n\n``` python\nfrom IPython.display import HTML,Markdown,display\nfrom mistletoe import markdown\n```\n\n``` python\nmarkdown('**aa**', ExtendedHtmlRenderer)\n```\n\n    '\u003cp\u003e\u003cstrong\u003eaa\u003c/strong\u003e\u003c/p\u003e\\n'\n\n``` python\ndef render_md(md): return HTML(markdown(md, ExtendedHtmlRenderer))\ndef  print_md(md):       print(markdown(md, ExtendedHtmlRenderer))\n```\n\n``` python\nmarkdown_text = \"\"\"\n#### My Document {#intro .important}\n\nThis is **H~2~O** and ==highlighted text==.\n\nCheck out https://fast.ai :rocket:\n\n- [x] Done\n- [ ] Todo\n\"\"\"\n\nrender_md(markdown_text)\n```\n\n\u003ch4 id=\"intro\" class=\"important\"\u003eMy Document\u003c/h4\u003e\n\u003cp\u003eThis is \u003cstrong\u003eH\u003csub\u003e2\u003c/sub\u003eO\u003c/strong\u003e and \u003cmark\u003ehighlighted text\u003c/mark\u003e.\u003c/p\u003e\n\u003cp\u003eCheck out \u003ca href=\"https://fast.ai\"\u003ehttps://fast.ai\u003c/a\u003e 🚀\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cinput type=\"checkbox\" disabled checked\u003e Done\u003c/li\u003e\n\u0026#10;\u003cli\u003e\u003cinput type=\"checkbox\" disabled \u003e Todo\u003c/li\u003e\n\u0026#10;\u003c/ul\u003e\n\n## Examples\n\n**Scientific notation:**\n\n``` python\nrender_md(\"H~2~O and E=mc^2^\")\n```\n\n\u003cp\u003eH\u003csub\u003e2\u003c/sub\u003eO and E=mc\u003csup\u003e2\u003c/sup\u003e\u003c/p\u003e\n\n**Emojis:**\n\n``` python\nrender_md(\"Great work! :tada: :100:\")\n```\n\n\u003cp\u003eGreat work! 🎉 💯\u003c/p\u003e\n\n**Footnotes:**\n\n``` python\nrender_md(\"\"\"Here's a claim[^1].\n\n[^1]: This is the supporting reference.\"\"\")\n```\n\n\u003cp\u003eHere's a claim\u003csup\u003e\u003ca href=\"#fn-1\" id=\"fnref-1\"\u003e[1]\u003c/a\u003e\u003c/sup\u003e.\u003c/p\u003e\n\u003cdiv id=\"fn-1\" class=\"footnote\"\u003e\u003csup\u003e1\u003c/sup\u003e This is the supporting reference. \u003ca href=\"#fnref-1\"\u003e↩\u003c/a\u003e\u003c/div\u003e\n\n**Heading attributes:**\n\n``` python\nprint_md('#### Section {#my-id .important data-level=\\\"1\\\"}')\n```\n\n    \u003ch4 id=\"my-id\" class=\"important\" data-level=\"1\"\u003eSection\u003c/h4\u003e\n\n## Contributing\n\nBy Jeremy Howard. Copyright ©️ fast.ai 2026 onwards. Contributions\nwelcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanswerdotai%2Fmistlefoot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanswerdotai%2Fmistlefoot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanswerdotai%2Fmistlefoot/lists"}