{"id":15292066,"url":"https://github.com/websemantics/markdown-html-ast","last_synced_at":"2026-01-05T16:32:46.846Z","repository":{"id":57291213,"uuid":"66171645","full_name":"websemantics/markdown-html-ast","owner":"websemantics","description":"Simplified Markdown to HTML parser","archived":false,"fork":false,"pushed_at":"2017-03-28T22:31:12.000Z","size":10,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-01T03:37:45.504Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/websemantics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","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":"2016-08-20T22:58:04.000Z","updated_at":"2021-01-13T19:50:47.000Z","dependencies_parsed_at":"2022-09-01T15:21:45.222Z","dependency_job_id":null,"html_url":"https://github.com/websemantics/markdown-html-ast","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmarkdown-html-ast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmarkdown-html-ast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmarkdown-html-ast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmarkdown-html-ast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/websemantics","download_url":"https://codeload.github.com/websemantics/markdown-html-ast/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245247417,"owners_count":20584346,"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-09-30T16:16:22.583Z","updated_at":"2026-01-05T16:32:41.827Z","avatar_url":"https://github.com/websemantics.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```        \n       ╭────┬───┬──╮╭──────╮╭───┬──╮╭───╮ ╭──╮  ╭────╮╭──────╮╭───╮╭──╮╭──╮╭────┬─╮\n       │           │├────  ││      ││   │╭╯ ╭╯╭─╯    ││   ╭╮ ││   ││  ││  ││      │\n       │   ╭╮  ╭╮  ││ ╭╮   ││    ╭─╯│   ╰╯ ╭╯ │ ╭╮   ││   ││ ││   ╰╯  ╰╯  ││   ╭╮ │\n       │   ││  ││  ││ ╰╯   ││    │  │   ╭╮ ╰╮ │ ╰╯   ││   ╰╯ ││           ││   ││ │\n       ╰───╯╰──╯╰──╯╰───┴──╯╰────╯  ╰───╯╰──╯ ╰─┴────╯╰──────╯╰────┴───┴──╯╰───╯╰─╯\n            ╭┬╮  ╭─╮      ┬ ┬  ╭┬╮  ╭┬╮  ┬        ╭─╮  ╭─╮  ┬─╮  ╭─╮  ╭─╮  ┬─╮\n             │   │ │      ├─┤   │   │││  │        ├─╯  ├─┤  ├┬╯  ╰─╮  ├┤   ├┬╯\n             ┴   ╰─╯      ┴ ┴   ┴   ┴ ┴  ┴─╯      ┴    ┴ ┴  ┴╰─  ╰─╯  ╰─╯  ┴╰─\n              \\____  __ __    ____       __    ____    __  ________  _ ____/\n                  \\________     _   \\__   \\      ____/             ____/\n                         \\_____  \\__   \\   |    /         _________/\n                              \\________   __      ________/\n                                       \\     \\   /   /\n                                       |         __ |\n                                       |        __  |\n                                       |            |\n                                       |   ___  _   |\n                                       |_           |\n                                       |            |\n                                    __/ / |   |   \\  \\___\n                                 __ _ _  _  _    _ _ __ ___\n\n```\n\u003e Simplified Markdown to HTML parser\n\n## Install\n\nBower\n\n```bash\nBower install markdown-html-ast\n```\n\nNPM\n\n```bash\nnpm i markdown-html-ast\n```\n\n## Getting Started\n\nThis package provides a simple parser that transforms `markdown` code to a simple `HTML` Abstract Syntax Tree (AST).\n\nTo demonstrate how to use, let's read a `README.md` file from a Github repository, [pyrocms-cheatsheet](https://github.com/websemantics/pyrocms-cheatsheet) using [Gitters](https://github.com/websemantics/gitters).\n\n\n```javascript\nGitters.fetch('websemantics/pyrocms-cheatsheet', 'README.md', function(file) {\n\n  var tree = parse(file.content)\n\n  console.log(tree)\n})\n```\n\n## Support\n\nNeed help or have a question? post at [StackOverflow](https://stackoverflow.com/questions/tagged/markdown-html-ast+websemantics).\n\n*Please don't use the issue trackers for support/questions.*\n\n*Star if you find this project useful, to show support or simply for being awesome :)*\n\n## Contribution\n\nContributions to this project are accepted in the form of feedback, bugs reports and even better - pull requests.\n\n## License\n\n[MIT license](http://opensource.org/licenses/mit-license.php) Copyright (c) Web Semantics, Inc.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebsemantics%2Fmarkdown-html-ast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebsemantics%2Fmarkdown-html-ast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebsemantics%2Fmarkdown-html-ast/lists"}