{"id":37050337,"url":"https://github.com/romanov/monobrowser","last_synced_at":"2026-01-14T05:50:20.717Z","repository":{"id":259701732,"uuid":"879240328","full_name":"romanov/MonoBrowser","owner":"romanov","description":"MonoBrowser Core is a markdown (CommonMark) rendering engine written in F# for MonoGame, and adaptable to desktop, mobile, and embedded applications.","archived":false,"fork":false,"pushed_at":"2024-11-05T12:49:13.000Z","size":93,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-15T04:38:43.022Z","etag":null,"topics":["markdown","render","rendering-engine"],"latest_commit_sha":null,"homepage":"","language":"F#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/romanov.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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":"2024-10-27T11:44:10.000Z","updated_at":"2025-07-09T03:33:28.000Z","dependencies_parsed_at":"2024-10-27T13:12:17.046Z","dependency_job_id":"e35d7c74-8578-4e51-acf7-5cb8abf30222","html_url":"https://github.com/romanov/MonoBrowser","commit_stats":null,"previous_names":["romanov/monobrowser"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/romanov/MonoBrowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanov%2FMonoBrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanov%2FMonoBrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanov%2FMonoBrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanov%2FMonoBrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/romanov","download_url":"https://codeload.github.com/romanov/MonoBrowser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romanov%2FMonoBrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28411591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"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":["markdown","render","rendering-engine"],"created_at":"2026-01-14T05:50:20.304Z","updated_at":"2026-01-14T05:50:20.709Z","avatar_url":"https://github.com/romanov.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MonoBrowser Core\nRender local and remote markdown files inside your projects and games!\n  \n![app1](https://github.com/user-attachments/assets/73d60b78-f2e6-4e70-b791-807830391b67)\n\n\n## Quick start\n\nInstall via [Nuget](https://www.nuget.org/packages/MonoBrowser/): `dotnet add package MonoBrowser`\n\n1. Add component to your game or project\n\n```\nvar browserWindow = new Rectangle(10, 10, _graphics.PreferredBackBufferWidth - 20, _graphics.PreferredBackBufferHeight - 20);\n\nvar browser = new BrowserComponent(this, browserWindow)\n{\n    EnableDebug = true,\n    EnableScrollbar = true,\n    AllowScroll = true,\n    DisableImages = false\n};\n\nbrowser.OnLinkClicked += (_, url) =\u003e\n{\n    // load new page or invoke method inside your game\n    Console.WriteLine($\"User clicked on: {url}\");\n};\n\nComponents.Add(browser);\n```\n\n2. Open remote markdown document with `browser.Navigate(\"https://yoursite/readme.md\")`\n3. Close window with `browser.Close()` \n\n## Documentation\n\nYou can load markdown content directly.\n```\nbrowser.FromString(\"\"\"\n                           # Game manual\n                           \n                           My game is **awesome** and here you can \n                           [read more](https://mygame.test) about it.\n                           \n                           ## How to play\n                           \n                           - Run my game\n                           - Click on a play button\n                           - Enjoy!\n                           \n                           \"\"\");\n```\n\n## About\n\n![image](https://github.com/user-attachments/assets/0f5f9894-dede-4478-a267-9b6d796ba6dd)\n\n* MonoBrowser - a browser for markdown files (in development) based on MonoBrowser Core.\n* MonoBrowser Core - a lightweight bare minimum browser component \u0026 markdown rendering engine written in F# for [MonoGame](https://monogame.net), and adaptable to desktop, mobile, and embedded C#/F# applications.\n\n## Support\nWorks in your C# or F# MonoGame projects.\nLibrary tested on Windows 11, and Mac OS Sequoia 15.0\n\n\n## Roadmap\n1. Multiple windows.\n2. Basic styles.\n3. Smooth scrolling.\n\n## Licenses\n[ImageSharp](https://github.com/SixLabors/ImageSharp) - allows convert images to PNG and load it to the game\n\n[AngleSharp](https://github.com/AngleSharp/AngleSharp) - HTML parser\n\n[Markdig](https://github.com/xoofx/markdig) - markdown parser\n\n[FontStashSharp](https://github.com/FontStashSharp/FontStashSharp) - fonts and text rendering\n\n[Apos Input](https://github.com/Apostolique/Apos.Input) - events\n\n[Inter font](https://openfontlicense.org/) - default font\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanov%2Fmonobrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromanov%2Fmonobrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanov%2Fmonobrowser/lists"}