File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
## version 0.2.0.9000-
3
3
* Added single quotes around object model in Description
4
4
* Hide some methods that are internal only from being listed in the documentation using #' #'@keywords internal
5
- * Change group name to org.renjin.cran for renjin build to have the same R code work in both Renjin and GNU-R
5
+ * Change group name to org.renjin.cran for the Renjin build to have the same R code work in both Renjin and GNU-R
6
6
7
7
## version 0.1.2, 2020-05-06
8
8
* Removed all print calls and replaced with warning or message when relevant
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ You can create and xmlr Document programmatically or by parsing text or a file.
12
12
13
13
# Creating the DOM programmatically
14
14
To create the following xml
15
- ```
15
+ ``` xml
16
16
<table xmlns =' http://www.w3.org/TR/html4/' >
17
17
<tr >
18
18
<td >Apples</td >
@@ -22,7 +22,7 @@ To create the following xml
22
22
23
23
```
24
24
You could do something like this:
25
- ```
25
+ ``` r
26
26
doc <- Document $ new()
27
27
root <- Element $ new(" table" )
28
28
root $ setAttribute(" xmlns" , " http://www.w3.org/TR/html4/" )
@@ -35,7 +35,7 @@ You could do something like this:
35
35
doc $ setRootElement(root )
36
36
```
37
37
Or you could do like this:
38
- ```
38
+ ``` r
39
39
doc2 <- parse.xmlstring("
40
40
<table xmlns='http://www.w3.org/TR/html4/'>
41
41
<tr>
You can’t perform that action at this time.
0 commit comments