Simon Legner
|
049a6a87f5
|
Show notification of new docs: R
|
4 years ago |
Simon Legner
|
1568083b27
|
R: enable syntax highlighting
|
4 years ago |
Simon Legner
|
e9c854c9e9
|
Merge pull request #1547 from Cimbali/R
|
4 years ago |
Simon Legner
|
1885855244
|
Show notification of new docs: web_extensions
|
4 years ago |
Cimbali
|
7269d5431f
|
Improve jq examples: simplify HTML, add %pre CSS
|
4 years ago |
Enoc
|
db902684a2
|
Show notification of new docs: latex, jq
|
4 years ago |
Cimbali
|
c6cf8d9c6f
|
Update assets/javascripts/templates/pages/about_tmpl.coffee
Co-authored-by: Simon Legner <Simon.Legner@gmail.com>
|
4 years ago |
Simon Legner
|
d55da94921
|
Merge pull request #1550 from Cimbali/jq
|
4 years ago |
Simon Legner
|
727c0c31c7
|
jq: add to about_tmpl
|
4 years ago |
Simon Legner
|
861ad32fbd
|
LaTeX: add to about_tmpl
See #1548.
|
4 years ago |
Simon Legner
|
5916ee829c
|
Merge pull request #1548 from Cimbali/latex
|
4 years ago |
Simon Legner
|
f139802767
|
LaTeX: syntax highlighting
|
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 |
Stefan Breunig
|
24ac996ec8
|
Elixir: include source link in section headers
This implements #763 just for Elixir without solving the general
issue. The style used is similar to the one of the Go docs.
|
4 years ago |
Simon Legner
|
591c30014a
|
Update HAProxy documentation (2.4.0)
|
4 years ago |
Simon Legner
|
83c59a5a4d
|
Update nginx documentation (1.20.0)
|
4 years ago |
Simon Legner
|
fd1cd2fcbd
|
Update Erlang documentation (24.0)
|
4 years ago |
Simon Legner
|
5ab83e5760
|
Update RxJS documentation (7.0.1)
|
4 years ago |
Simon Legner
|
f378bc0e98
|
Update Jinja documentation (3.0.x)
|
4 years ago |
Simon Legner
|
b6ddb21a2f
|
Update Werkzeug documentation (2.0.x)
|
4 years ago |
Simon Legner
|
6f3c1167e2
|
Update Flask documentation (2.0.x)
|
4 years ago |
Enoc
|
1ac3dd93dd
|
Update nodejs to 16.1 and update previous version
|
4 years ago |
Simon Legner
|
a78db966d2
|
Update Bootstrap documentation (5.0)
|
4 years ago |
Simon Legner
|
206f915f89
|
Update Ansible documentation (2.11.0)
|
4 years ago |
Simon Legner
|
0ca4586123
|
Update Python documentation (3.9.4)
|
4 years ago |
Simon Legner
|
f7ffc94653
|
Update Sinon.JS documentation (10.0.1)
|
4 years ago |
Simon Legner
|
ff0ff27005
|
Merge pull request #1533 from viq/patch-1
Update SaltStack documentation to version 3003
|
4 years ago |
viq
|
28bf212419
|
Update year in about_tmpl.coffee
|
4 years ago |
Simon Legner
|
c0ddcf3469
|
Shortcut to copy URL of original page (alt + C)
Fixes #1199.
|
4 years ago |
Simon Legner
|
f703104c1c
|
Update Godot documentation (3.3.0)
|
4 years ago |
Enoc
|
7fdfd51bdb
|
Add 'report a bug' button
|
4 years ago |
Simon Legner
|
3175e2b4d3
|
Update Matplotlib documentation (3.4.1)
|
4 years ago |
Simon Legner
|
22e7767145
|
Merge pull request #1473 from freeCodeCamp/mdn/yari
mdn: update scraper to mdn/yari
|
4 years ago |
Simon Legner
|
4dc9557032
|
mdn: update scraper to mdn/yari
|
4 years ago |
Simon Legner
|
3fc89f307a
|
mdn: 2021
|
4 years ago |
Enoc
|
a721460c89
|
Update Elisp Documentation (27.2)
- Change Elisp scraper to FileScraper
- Add notes about how to obtain Elisp doc files
|
4 years ago |
Bryan Hernández
|
f81a22ddfb
|
Merge pull request #1493 from freeCodeCamp/docs-maxcdn
Remove MaxCDN from docs
|
4 years ago |
Oliver Eyton-Williams
|
047278debc
|
fix: s/master/main/g
|
4 years ago |
Simon Legner
|
5e5e46945a
|
Update Julia documentation (1.6.0)
|
4 years ago |
Simon Legner
|
9be4243005
|
Update PostgreSQL documentation (13.2)
|
4 years ago |
Simon Legner
|
633262ac06
|
Update Jasmine documentation (3.7.1)
|
4 years ago |
Simon Legner
|
3c407a8ea6
|
Update Angular documentation (11.2.6)
|
4 years ago |
Simon Legner
|
0a4ef6ada9
|
Update Crystal documentation (1.0.0)
|
4 years ago |
Enoc
|
867c3b27bc
|
Update Git documentation (2.31.0)
|
4 years ago |
Enoc
|
d3e6977be2
|
Update Mocha documentation (8.3.2)
|
4 years ago |
Simon Legner
|
ddb59e32ce
|
Update scikit-image documentation (0.18.1)
|
4 years ago |
Simon Legner
|
67f90950ad
|
Update Socket.IO documentation (4.0.0)
|
4 years ago |
Simon Legner
|
006b12dc2d
|
Update WordPress documentation (5.7)
|
4 years ago |
Simon Legner
|
e59155e1ad
|
Update about_tmpl.coffee
|
4 years ago |
Simon Legner
|
91138ad508
|
Update TypeScript documentation (New Handbook)
https://devblogs.microsoft.com/typescript/announcing-the-new-typescript-handbook/
|
4 years ago |
Simon Legner
|
e9d7849412
|
Merge pull request #1490 from MasterEnoc/sidebar
Fix sidebar when the mouse leaves the window
|
4 years ago |
Simon Legner
|
d48df8f3f3
|
Remove MaxCDN from docs
|
4 years ago |
Simon Legner
|
1a7ba5962b
|
Update TensorFlow documentation (2.4.0)
|
4 years ago |
Simon Legner
|
b5bc2e0ef0
|
Update SQLite documentation (3.34.0)
|
4 years ago |
Enoc
|
2824f75cd5
|
Fix sidebar when the mouse leave the window
|
4 years ago |
Simon Legner
|
a86b914bd7
|
Update TypeScript documentation (4.2.2)
|
4 years ago |
Simon Legner
|
1f6d319334
|
Update OCaml documentation (4.12)
|
4 years ago |
Simon Legner
|
6f7ff4ddd3
|
Update Fish documentation (3.2.0)
|
4 years ago |
Simon Legner
|
7480257c59
|
Merge pull request #1486 from dohsimpson/add_react_bootstrap_doc
Added Documentation for React-bootstrap
|
4 years ago |
Simon Legner
|
b425f18215
|
Update news.json
|
4 years ago |
dohsimpson
|
0339b078a5
|
Fix styling and added licnese to about page
|
4 years ago |
Simon Legner
|
eca997095d
|
Merge pull request #1483 from yads/fix-ember-docs
update Ember docs to latest version
|
4 years ago |
Enoc
|
4d885efd71
|
Do not show shortcut help when typing '?' in the search box
|
4 years ago |
Vadim Kazakov
|
cc32a355d7
|
update Ember docs to latest version
* fix ember parsing to handle current guides/docs
|
4 years ago |
Simon Legner
|
0a2a0d6e07
|
Update webpack documentation (5.23.0)
|
4 years ago |
Simon Legner
|
7a23d52d81
|
Update PrismJS library (1.23.0)
|
4 years ago |
Simon Legner
|
9759b3b676
|
Update NumPy documentation (1.20.1)
|
4 years ago |
Simon Legner
|
86d23b7127
|
Update D3.js documentation (6.5.0)
|
4 years ago |
Oliver Eyton-Williams
|
324ad131cb
|
Merge pull request #1480 from ojeytonwilliams/feat/cloudflare
feat: migrate to Cloudflare
|
4 years ago |
Simon Legner
|
f984f76c21
|
Update Puppeteer documentation (7.1.0)
|
4 years ago |
Oliver Eyton-Williams
|
c6264eb1bf
|
fix: remove cdn entirely and rely on Cloudflare
|
4 years ago |
Simon Legner
|
dfed09bdcd
|
It's 2021
|
4 years ago |
Enoc
|
ed15918157
|
Update liquid to 5.0
Add prism highlight for liquid
|
4 years ago |
Simon Legner
|
c49736bad6
|
Update Vue.js documentation (2.6.12 and 3.0.5)
|
4 years ago |
Simon Legner
|
6087613630
|
Merge pull request #1472 from freeCodeCamp/erlang-23
Update Erlang documentation (23.2)
|
4 years ago |
Simon Legner
|
3b14a531eb
|
Update Erlang documentation (23.2)
|
4 years ago |
Simon Legner
|
ceacdc6079
|
help: Firefox add search engine from address bar
Ref: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox
Fixes #1469.
|
4 years ago |
malkoG
|
55c4e23b05
|
Update Rails documentation (6.1.0)
|
4 years ago |
Simon Legner
|
9709283d59
|
numpy: add versions 1.18 and 1.19
|
4 years ago |
Simon Legner
|
655a0d93d8
|
Update news.json
|
4 years ago |
Simon Legner
|
9d1649233c
|
Merge pull request #1236 from seirl/ocaml
Add documentation for OCaml
|
4 years ago |
Simon Legner
|
78fb2c812a
|
Update Puppeteer documentation (5.5.0)
|
4 years ago |
Simon Legner
|
23fb460c2e
|
Update Ramda documentation (0.27.0)
|
4 years ago |
Simon Legner
|
7b336a2fb8
|
Update WordPress documentation (5.6)
|
4 years ago |
Simon Legner
|
3dfb606805
|
Update Redis documentation (6.0.9)
|
4 years ago |
Simon Legner
|
2eaf7cb894
|
Update Matplotlib documentation (3.3.3)
|
4 years ago |
Simon Legner
|
87b0f4b6d4
|
Update news.json
|
4 years ago |
Phil Scherer
|
2d1d564582
|
Add GTK Documentation
|
4 years ago |
Simon Legner
|
5318bb4b29
|
Use `app.settings.get('arrowScroll')`
|
4 years ago |
Nishiki Liu
|
72d3bb266d
|
Make arrow scroll copy dynamic on help page
|
4 years ago |
Simon Legner
|
f43b073a05
|
Merge pull request #1424 from scherepn/scikit-image-update
Update Scikit-image documentation (0.17.2)
|
4 years ago |
Simon Legner
|
9b374549cd
|
Merge pull request #1423 from scherepn/scikit-learn-update
Update scikit-learn documentation (0.23.2)
|
4 years ago |
Phil Scherer
|
56c3236536
|
Update scikit-learn documentation (0.23.2)
|
4 years ago |
Phil Scherer
|
e13a492bb5
|
Update Scikit-image documentation (0.17.2)
|
4 years ago |
Nishiki Liu
|
11269e71ba
|
Update arrow scroll copy in settings
|
4 years ago |
Nishiki Liu
|
08f78601e6
|
Update ProTip copy to be dynamic
|
4 years ago |
Simon Legner
|
ee488498ba
|
Merge pull request #1415 from MasterEnoc/padrino
Update Padrino to 0.15
|
4 years ago |
Simon Legner
|
e7675d834b
|
Merge pull request #1413 from scherepn/pygame-update
Update Pygame documentation (2.0.0)
|
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 |
MasterEnoc
|
64b56a437e
|
Update Padrino to 0.15
|
4 years ago |