File: Rref.xml

package info (click to toggle)
r-cran-xml 3.99-0.18-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,688 kB
  • sloc: ansic: 6,656; xml: 2,890; asm: 486; sh: 12; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>

<article xmlns:r='http://www.r-project.org'>

This is an example of code with references to other segments


Top-level code
<r:code>
x = 1
cat("top-level code node\n")
<r:code ref="bob"/>
print(x)
</r:code>

<r:frag id="bob">
cat("r:code node with id bob\n")
x = 10
</r:frag>


</article>