We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my video tag format is:
<video width="320" height="240" controls> <source src="xxx/movie.mp4" type="video/mp4"> </video>
This code does not work: https://github.com/asjqkkkk/markdown_widget/blob/dev/example/lib/markdown_custom/video.dart
please tell me how to get src of source ,thank you~
src
source
The text was updated successfully, but these errors were encountered:
@asjqkkkk help
Sorry, something went wrong.
Hi @zhouzhuo810 , you need change the html like this:
<video width="320" height="240" src="xxx/movie.mp4">
then you can get the src.
Or you need custom your own html parser with : https://github.com/asjqkkkk/markdown_widget/blob/dev/example/lib/markdown_custom/html_support.dart
No branches or pull requests
my video tag format is:
This code does not work:
https://github.com/asjqkkkk/markdown_widget/blob/dev/example/lib/markdown_custom/video.dart
please tell me how to get
src
ofsource
,thank you~The text was updated successfully, but these errors were encountered: