xjkdev
77730c3073
Added eigen3 scrapers, filters, icons, and etc.
3 years ago
Simon Legner
a8eb603198
tailwindcss: fix icons
3 years ago
Damilola Olowookere
4f0b3cc7e4
Effect commit comments
...
31233ce005 (commitcomment-50041798)
3 years ago
Damilola Olowookere
39aa5b1c90
First initial release of TailwindCSS DevDoc
3 years ago
Simon Legner
79ffe3fd6a
Update React Native documentation (0.66)
3 years ago
Simon Legner
c12b8e4797
Add React Router documentation (6.2.1)
3 years ago
Simon Legner
b5963d43a6
Update Deno logo
...
https://deno.land/logo.svg
3 years ago
Simon Legner
f19a61aa1b
Add Deno documentation (1.17.2)
3 years ago
Aditya Ardiya
5632820da9
Add PointCloudLibrary icons
3 years ago
Simon Legner
4ed22db333
Add Zig documentation (0.9.0)
3 years ago
Enoc
848f7194a0
Add Gnu Make documentation
3 years ago
Simon Legner
d49eea4640
Add Prettier documentation (2.5.1)
...
https://prettier.io/
3 years ago
Simon Legner
a9843261b9
Add esbuild documentation
3 years ago
Simon Legner
8975e9c738
Add Vite documentation
...
https://vitejs.dev/
3 years ago
Simon Legner
489975da83
Add i3 documentation
3 years ago
Darío Hereñú
2fd2eb69f0
Updated URL to download Codeigniter logotypes
3 years ago
Simon Legner
dcddb73500
Update Node.js documentation (17.0.1)
3 years ago
Simon Legner
905af1fb82
Update CoffeeScript documentation (2.6.1)
3 years ago
Simon Legner
e9c854c9e9
Merge pull request #1547 from Cimbali/R
4 years ago
Simon Legner
d55da94921
Merge pull request #1550 from Cimbali/jq
4 years ago
Cimbali
8fdca1d87c
Add jq
4 years ago
Cimbali
776ec5a35d
Add LaTeX documentation from https://latexref.xyz
...
From https://ctan.org/pkg/latex2e-help-texinfo , the license is Public Domain.
4 years ago
Cimbali
0b38f339f1
Add R documentation
...
Contains the R base + recommended package help pages converted to HTML.
Equivalent to the fullrefman.pdf generated from source, which is also
called « The R Reference Index » on https://cran.r-project.org/manuals.html
Currently does not include reference manuals and miscellanea (FAQ, etc.)
Script building the documentation:
```bash
set -e
set -o pipefail
DEVDOCSROOT=/path/to/devdocs/docs/r
RSOURCEDIR=${TMPDIR:-/tmp}/R/latest
RBUILDDIR=${TMPDIR:-/tmp}/R/build
RLATEST=https://cran.r-project.org/src/base/R-latest.tar.gz
R="$RBUILDDIR/bin/R"
libdir="$RBUILDDIR/library"
docdir=$RBUILDDIR/doc
makevars="$RSOURCEDIR/share/make/vars.mk"
if [ ! -f "$R" ] ; then
if [ ! -d "$RSOURCEDIR" ]; then
mkdir -p "$RSOURCEDIR" && curl "$RLATEST" | tar -C "$RSOURCEDIR" -xzf - --strip-components=1
fi
[ -d "$RBUILDDIR" ] || mkdir -p "$RBUILDDIR"
[ -f "$RBUILDDIR/config.status" ] || (cd "$RBUILDDIR" && "$RSOURCEDIR/configure")
make -C "$RBUILDDIR" && make -C "$RBUILDDIR" docs
fi
mkdir -p "$DEVDOCSROOT/doc" && cp -r "$docdir"/* "$DEVDOCSROOT/doc/"
find "$libdir" -type d -name 'html' -printf '%P\n' | while read d; do
mkdir -p "$DEVDOCSROOT/library/$d"
cp -r "$libdir/$d"/* "$DEVDOCSROOT/library/$d/"
done
R_PKGS_BASE="`sed -n 's/^R_PKGS_BASE *= *//p' $makevars`"
R_PKGS_RECOMMENDED="`sed -n 's/^R_PKGS_RECOMMENDED *= *//p' $makevars`"
cat <<EOF | _R_HELP_LINKS_TO_TOPICS_=FALSE $R --vanilla --no-echo
links <- tools::findHTMLlinks()
for (pkg in c(`echo $R_PKGS_BASE $R_PKGS_RECOMMENDED | sed 's/\S\+/"&"/g;s/ /, /g'`)) {
Rd <- tools::Rd_db(pkg, lib.loc="$libdir")
if (!length(Rd)) {
message(paste("ERROR: no help files found for package", pkg))
} else {
message(paste0(pkg, "..."))
}
for(f in names(Rd)) {
out <- file.path("$DEVDOCSROOT/library", pkg, "html", sub("[Rr]d$", "html", basename(f)))
tools::Rd2HTML(Rd[[f]], out, package = "$pkg", defines = .Platform\$OS.type,
outputEncoding = "UTF-8", no_links = FALSE, dynamic = FALSE,
Links = links, stages = c("build", "install", "render"))
}
}
EOF
echo "DONE! Start at $DEVDOCSROOT/doc/html/index.html (or $DEVDOCSROOT/doc/html/packages.html)"
```
4 years ago
Simon Legner
633262ac06
Update Jasmine documentation (3.7.1)
4 years ago
dohsimpson
6f1a9aab21
Added Documentation for React-bootstrap
4 years ago
Simon Legner
a26a7eb502
Update Haskell documentation (9.0.1)
4 years ago
Enoc
ed15918157
Update liquid to 5.0
...
Add prism highlight for liquid
4 years ago
Simon Legner
9709283d59
numpy: add versions 1.18 and 1.19
4 years ago
Simon Legner
9d1649233c
Merge pull request #1236 from seirl/ocaml
...
Add documentation for OCaml
4 years ago
Phil Scherer
2d1d564582
Add GTK Documentation
4 years ago
Simon Legner
c0dbaaf140
Merge pull request #1403 from MasterEnoc/twig
...
Update Twig to 3.1.1 and update previous versions
4 years ago
Simon Legner
31264ad08f
Merge pull request #1408 from scherepn/pallets-projects
...
Add Pallets projects (Flask, Jinja, and Werkzeug) documentation
4 years ago
Phil Scherer
319074f6b7
Add Pallets projects (Flask, Jinja, and Werkzeug) documentation
4 years ago
MasterEnoc
978f3e891d
Change the logo of twig to the correct one
4 years ago
MasterEnoc
7a483c5f5f
Update Twig to 3.1.1 and update previous versions
4 years ago
Phil Scherer
30fd37fc54
Add Groovy documentation
4 years ago
Phil Scherer
450adb5e72
Add HAProxy documentation
4 years ago
MasterEnoc
9c2ca1f27c
Update Pandas to 1.1.4
...
- Add version 1 of pandas, add new filters for this version
- Pandas' web page changed but the page for older version is the same,
for that reason new filters are added and the name old ones are
changed
4 years ago
Simon Legner
fc65b1bc39
support_tables: update, use npm versioning
4 years ago
samfundev
23b4378582
codeceptjs: update to 3.0.2
4 years ago
Simon Legner
ff29aa240c
homebrew: update release 2.5.11
4 years ago
Simon Legner
35d7bcd365
Merge pull request #1344 from simon04/bootstrap-4.5
...
bootstrap: update release 4.5
4 years ago
Simon Legner
852503ab41
bootstrap: update release 4.5
4 years ago
Simon Legner
eda53194b0
Merge pull request #1270 from MasterEnoc/master
...
Add Elisp docs for version 26.3
4 years ago
Simon Legner
9ad20cbc46
Merge pull request #1165 from lgeiger/tensorflow-versions
...
Split Tensorflow into separate Python and C++ docs
4 years ago
Lukas Geiger
ccd20c0472
Remove TensorFlow Guides
4 years ago
Lukas Geiger
c7a2a37280
Split Tensorflow into separate Python, C++ and Guide docs
4 years ago
Phil Scherer
be80d182e5
Update Fish scraper
4 years ago
Simon Legner
41ab102ed7
Merge pull request #1241 from xavieryao/master
...
Add PyTorch v1.7.0 documentation
4 years ago
Simon Legner
6956b9c3e0
Merge pull request #1225 from ahosni/docs-spring-boot
...
Add documentation for Spring Boot
4 years ago