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
Am i able to add custom rules?
const rules = { video: (node, children, parent, styles) => { const { src } = node.attributes; console.log("node", node); return ( <View key={node.key} style={{ height: 210, marginBottom: 20, }}> <Text type="h5Bold" style={{ marginBottom: 10 }}> teste </Text> <YoutubePlayer height={210} videoId={"FfCp4t6jiyc"} /> </View> ); }, };
if yes, how can i use it? what is the markdown example?
The text was updated successfully, but these errors were encountered:
You can do it with a plugin. See the Plugins and Extensions section of the documentation.
Sorry, something went wrong.
No branches or pull requests
Am i able to add custom rules?
if yes, how can i use it? what is the markdown example?
The text was updated successfully, but these errors were encountered: