lwansbrough / react-native-markdown

Markdown component for React Native
MIT License
277 stars 80 forks source link

Custom styling in example usage #10

Closed pdilyard closed 9 years ago

pdilyard commented 9 years ago

I'm new to react and was wondering if I could get a code example of custom styling. I've tried this so far:

<Markdown text={styles.text}>
  Some *really* basic **Markdown**.
</Markdown>

But to no avail. It would be nice if there was an example of styling in the documentation.

lwansbrough commented 9 years ago
<Markdown style={styles}>
  Some *really* basic **Markdown**.
</Markdown>

is probably what you're looking for!

pdilyard commented 9 years ago

Great, thanks!