Markdown preview is not showing
See original GitHub issue- Markwon version: 4.6.0
Please specify expected/actual behavior
I expect my EditText to preview the markdown like the video here, and my EditText is not previewing the markdown I entered
Please specify conditions/steps to reproduce (layout, code, markdown used, etc)
My dependencies
implementation "io.noties.markwon:core:4.6.0"
implementation "io.noties.markwon:editor:4.6.0"
implementation "io.noties.markwon:ext-strikethrough:4.6.0"
implementation 'io.noties.markwon:ext-tables:4.6.0'
implementation 'io.noties.markwon:ext-tasklist:4.6.0'
implementation 'io.noties.markwon:html:4.6.0'
Code I am using
final Markwon markwon = Markwon.create(ChatActivity.this);
final MarkwonEditor markwonEditor = MarkwonEditor.create(markwon);
etMessage.addTextChangedListener(MarkwonEditorTextWatcher.withPreRender(markwonEditor, Executors.newCachedThreadPool(), etMessage));
I’m trying to preview bold markdown
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Markdown Preview not showing · Issue #72873 - GitHub
Create a markdown file with .md extension. Save it at desktop location. Exit VSCode; Open VSCode again and open the file. Try pressing...
Read more >Markdown preview does not show a picture from the project ...
Markdown preview does not show a picture from the project sources ... As far as I can see - it is able to...
Read more >Markdown preview does not display the result properly
From this documentation, the script should be able to display properly in Markdown preview. The Current Result The preview shows like the below...
Read more >Where did the Markdown Preview button go in VS Code 1.3.0?
Option 1: Right-click the file in the lefthand list panel, and choose Open Preview. · Option 2: Press ⌘ SHIFT V while on...
Read more >Troubleshooting - Dendron
Engine not Initialized. cause: You are not running inside a workspace ... of the Dendron preview; fixes: Use Dendron Markdown Preview ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello @chrisbarth01 ,
if you wish
TextView
to not be clickable (this applies to all links in text) - you need to disable implicit movement method:Thank you!