+++ /dev/null
-|--------------
-| Basic usage :
-|--------------
-
-#Install
-R CMD INSTALL path/to/pkgdev/folder
-
-#Launch R
-R
-
-#load library
-library(pkgdev)
-
-#load some package
-pkgpath = "path/to/some/package"
-pkgdev.load(pkgpath)
-
-#test it (if unit tests defined under tests/ subfolders)
-pkgdev.rtest(pkgpath)
-pkgdev.rtest(pkgpath)
-
-#you can also run its functions
-foo(...)
-bar(...)
-
-#reload package to test modifications
-pkgdev.load(pkgpath)
-
-#...and so on
-
-#finally, unload package
-pkgdev.unload(pkgpath)
-
----------------------------------
-
-Try also pkgTest/ testing package
 
--- /dev/null
+<h1>pkgdev: help to develop R packages</h1>
+
+<h2>Basic usage</h2>
+
+<pre><code>   #Install and load library
+   R CMD INSTALL path/to/pkgdev/folder
+   library(pkgdev) #inside R
+
+   #load some package
+   pkgpath = "path/to/some/package"
+   pkgdev.load(pkgpath) #this command also reload package
+
+   #test it (if unit tests defined under tests/ subfolders)
+   pkgdev.rtest(pkgpath) ; pkgdev.ctest(pkgpath)
+
+   #you can also run its functions
+   foo(...) ; bar(...)
+
+   #...and so on
+
+   #finally, unload package
+   pkgdev.unload(pkgpath)</code></pre>
+
+<p>Try also pkgTest/ testing package.</p>