bbcode-react-native-view
Version:
Convert BBCode into react native views
25 lines (17 loc) • 423 B
JavaScript
const Parser = require( "./src/Parser");
const message = `
Test string
[]Go to Google[/url]
[]Color Text[/COLOR]
[]Left Content[/RIGHT]
[]Center content[/CENTER]
List
[]
[*]Item 1
[*]Item 2
[*]Item 3 [URL='https://google.com']Go to Google[/URL]
[/LIST]
[][/RIGHT]
`;
const tagMap = Parser(message);
console.log(JSON.stringify(tagMap, null, 2));