Fabian S. Varon Valencia
93c46faf3c
added nginx logo url
2 years ago
Fabian S. Varon Valencia
ad52ec179b
added meteor js logo url
2 years ago
Fabian S. Varon Valencia
5a041fbff0
added marionette logo url
2 years ago
Fabian S. Varon Valencia
a5689eb8eb
added love logo from wiki
2 years ago
Fabian S. Varon Valencia
dd50f89304
added latex logo
2 years ago
Fabian S. Varon Valencia
bd4709c611
added knockout icon url
2 years ago
Fabian S. Varon Valencia
c89e5e3fcc
update julia icon url
2 years ago
Fabian S. Varon Valencia
cb72c344c4
update jest icon url
2 years ago
Fabian S. Varon Valencia
7d1f5c85a6
added source file with updated icons
2 years ago
Simon Legner
03d3f206d1
Add Astro documentation (1.4.7)
2 years ago
Simon Legner
cd41d39abc
Add Vitest documentation (0.24.0)
2 years ago
Simon Legner
4d03b4aec6
Merge pull request #1835 from fabianchoxD/fix-broken-links
...
Fix broken links
2 years ago
Fabian S. Varon Valencia
503f24bff3
replace broken link logos
2 years ago
Fabian S. Varon Valencia
882fd5d6a1
update docker trademark guidelines - added media resources
2 years ago
Tim Lim
fcbdddc741
Add FastAPI (0.85.0) documentation
2 years ago
Tim Lim
850366459b
Add Moment.js Timezone (0.5.37)
2 years ago
Simon Legner
8bbbb9e634
Add Svelte documentation (3.50.1)
2 years ago
Simon Legner
f7aead95e4
Add date-fns documentation (2.29.2)
2 years ago
Simon Legner
03e42df10e
Add Axios documentation (0.27.2)
2 years ago
Simon Legner
16f42e7780
Add Requests documentation (2.28.1)
2 years ago
David Chambers
6510b06a36
add Sanctuary
3 years ago
Simon Legner
d52bd7e362
fix(point_cloud_library): icons
3 years ago
Simon Legner
961d1276a8
Merge pull request #1741 from mfouad/kubernetes
...
Kubernetes documentation
3 years ago
Fouad
f7c8c8a6f8
added Kubectl documentation
3 years ago
Fouad
216a9d8f8e
Add Kubernetes docs
3 years ago
Thomas Dy
f1dd2acc08
Add nix and nixpkgs
...
This only adds a subset of nix and nixpkgs functions. Notably
derivation, stdenv and language-specific functions are omitted for now
as their formats differ significantly and will require more cleanup.
3 years ago
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