Skip to content

Commit 9226917

Browse files
committed
updating docs
1 parent dd6bdc4 commit 9226917

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ To give a summary of the supported syntax react-native-markdown-renderer support
3030
- Images
3131
- Plugins for **extra** syntax support, [see plugins](https://www.npmjs.com/browse/keyword/markdown-it-plugin). Because this markdown-renderer uses markdown-it as its base it also supports all its plugins and subsequent extra language support.
3232

33-
3433
### Tested on:
3534

3635
| [] | react | react-native | version |
@@ -40,13 +39,10 @@ To give a summary of the supported syntax react-native-markdown-renderer support
4039
| v | 16.0.0-alpha.6 | 0.44.0 | 2.0.5 |
4140
| x | 15.x | ^0.46.4 | 2.0.5 |
4241

43-
``` // react 15 seems to break with expo.```
44-
4542
### Todo
4643
- ~~add styleSheet support~~
4744
- ~~add plugin support~~
4845
- ~~add support for seperate rules~~
49-
- add styleSheet inheritance support
5046

5147
### How to:
5248

doc/example/simple-with-custom-renderer.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Simple Implementation with custom styles
22

3+
docs for v3.0.0
4+
35
So to describe what i customized
46
- Heading1 has a **fontSize** of 32, **backgroundColor** black and a **color** white.
57
- all headers have a **border** at the bottom, of width 1 with a black color.

doc/example/simple-with-custom-rules.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Simple Implementation with custom Rules
22

3+
docs for v3.0.0
4+
35
So to describe what i customized
46
- header1 will always look like ```[ h1 Heading 8-)]```
57
- header2 will always look like ```[ h2 Heading 8-)]```

doc/example/simple-with-custom-styles.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Simple Implementation with custom styles
22

3+
docs for v3.0.0
4+
35
So to describe what i customized
46
- Heading1 has a **fontSize** of 32, **backgroundColor** black and a **color** white.
57
- all headers have a **border** at the bottom, of width 1 with a black color.

doc/example/simple.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Basic Implementation
22

3+
docs for v3.0.0
4+
35
```js
46
import react from 'react';
57
import {PureComponent} from 'react-native';
@@ -25,4 +27,20 @@ export default class Page extends PureComponent {
2527
);
2628
}
2729
}
28-
```
30+
```
31+
32+
33+
- updating docs Mient-jan Stelling 1/19/18, 13:00
34+
- updating readme Mient-jan Stelling 1/19/18, 12:59
35+
- Merge branch 'release/3.0.0' Mient-jan Stelling 1/19/18, 12:55
36+
- fixed issue where headers would now break to new line. Mient-jan Stelling 1/19/18, 12:54
37+
- fixed issue where images would not render. Mient-jan Stelling 1/19/18, 12:33
38+
- fixed issue where you could not set a general fontSize fo all copy. #17 Mient-jan Stelling 1/19/18, 12:06
39+
- adding small function so example wont break when starting it. Mient-jan Stelling 1/18/18, 18:55
40+
- updating to 3.0.0 because of breaking changes Mient-jan Stelling 1/18/18, 18:48
41+
- updating package.json to new react and react-native versions Mient-jan Stelling 1/18/18, 18:47
42+
- refactoring code so it will be easier to add plugins Mient-jan Stelling 1/18/18, 18:46
43+
- updating example code base Mient-jan Stelling 1/18/18, 18:39
44+
- adding watcher, for better development of component Mient-jan Stelling 1/18/18, 18:36
45+
- converting to new rule names, ul = bullet_list li = ordered_list a = link br = softbreak h1 <> h6 = heading1 <> heading6 Mient-jan Stelling 1/16/18, 14:13
46+
- adding type convert function for better support of new of writing tags. Mient-jan Stelling 1/16/18, 11:57

0 commit comments

Comments
 (0)