{"id":29308923,"url":"https://github.com/yahiaangelo/markdownedittext","last_synced_at":"2025-07-07T07:19:15.259Z","repository":{"id":38267030,"uuid":"278847258","full_name":"YahiaAngelo/MarkdownEditText","owner":"YahiaAngelo","description":"A native Rich Text Editor with Markdown export option.","archived":false,"fork":false,"pushed_at":"2022-11-05T12:16:07.000Z","size":7013,"stargazers_count":117,"open_issues_count":2,"forks_count":13,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-11-07T15:31:26.125Z","etag":null,"topics":["android","markdown","markdown-editor"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/YahiaAngelo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"custom":["https://paypal.me/YahiaMostafa"]}},"created_at":"2020-07-11T11:22:34.000Z","updated_at":"2023-10-13T06:37:36.000Z","dependencies_parsed_at":"2022-09-13T04:11:17.965Z","dependency_job_id":null,"html_url":"https://github.com/YahiaAngelo/MarkdownEditText","commit_stats":null,"previous_names":[],"tags_count":6,"template":null,"template_full_name":null,"purl":"pkg:github/YahiaAngelo/MarkdownEditText","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YahiaAngelo%2FMarkdownEditText","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YahiaAngelo%2FMarkdownEditText/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YahiaAngelo%2FMarkdownEditText/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YahiaAngelo%2FMarkdownEditText/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YahiaAngelo","download_url":"https://codeload.github.com/YahiaAngelo/MarkdownEditText/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YahiaAngelo%2FMarkdownEditText/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264032595,"owners_count":23546821,"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":["android","markdown","markdown-editor"],"created_at":"2025-07-07T07:18:42.898Z","updated_at":"2025-07-07T07:19:15.254Z","avatar_url":"https://github.com/YahiaAngelo.png","language":"Kotlin","funding_links":["https://paypal.me/YahiaMostafa"],"categories":[],"sub_categories":[],"readme":"# MarkdownEditText [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.yahiaangelo.markdownedittext/markdownedittext/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.yahiaangelo.markdownedittext/markdownedittext)\n\nA native Rich text editor for android based on [Markwon](https://github.com/noties/Markwon) library with export to Markdown option\n\n---\n## Preview\n\u003cimg src=\"https://raw.githubusercontent.com/YahiaAngelo/MarkdownEditText/master/preview/preview.gif\" width=\"310\"\u003e\n\n---\n\n## Usage:\n\n### Adding the depencency\nAdd the dependency to your app build.gradle file:\n```\nimplementation 'io.github.yahiaangelo.markdownedittext:markdownedittext:$latestVersion'\n```\n### XML\n```xml\n    \u003ccom.yahiaangelo.markdownedittext.MarkdownEditText\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        app:layout_constraintTop_toBottomOf=\"@id/appbar\"\n        android:id=\"@+id/edittext\"\n        android:gravity=\"top\"/\u003e\n\n    \u003ccom.yahiaangelo.markdownedittext.MarkdownStylesBar\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"48dp\"\n        android:id=\"@+id/stylesbar\"\n        app:buttonColor=\"@color/style_button_colors\"\n        android:clipToPadding=\"false\"\n        android:paddingStart=\"8dp\"\n        android:paddingEnd=\"8dp\"\n        app:layout_constraintBottom_toBottomOf=\"parent\"/\u003e\n```\n### Code\n```kotlin\n   val markdownEditText = findViewById\u003cMarkdownEditText\u003e(R.id.edittext)\n   val stylesBar = findViewById\u003cMarkdownStylesBar\u003e(R.id.stylesbar)\n   markdownEditText.setStylesBar(stylesBar)\n```\n#### Customize default Styles bar :\n```Kotlin\n   //Select specific Styles to show\n   stylesbar.stylesList = arrayOf(MarkdownEditText.TextStyle.BOLD, MarkdownEditText.TextStyle.ITALIC)\n```\n---\n\n### Available styles:\n* bold\n* italic\n* strike through\n* links\n* bullet list\n* numbered list\n* tasks list\n---\n\n### Libraries:\n[Material Design components](https://github.com/material-components/material-components-android)\n\n[Markwon](https://github.com/noties/Markwon)\n\n---\n## License: \n```\n  Copyright 2020 YahiaAngelo\n\n  Licensed under the Apache License, Version 2.0 (the \"License\");\n  you may not use this file except in compliance with the License.\n  You may obtain a copy of the License at\n\n      http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyahiaangelo%2Fmarkdownedittext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyahiaangelo%2Fmarkdownedittext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyahiaangelo%2Fmarkdownedittext/lists"}