Simon Legner
57865a64ad
Update PHP documentation (8.1)
3 years ago
Simon Legner
489975da83
Add i3 documentation
3 years ago
Simon Legner
f4ca6cec9f
Update Matplotlib documentation (3.4.3)
...
Fixes #1650 .
3 years ago
Simon Legner
b87359ad22
Update CodeIgniter documentation (4.1.5)
3 years ago
Simon Legner
6770658d83
Merge pull request #1653 from freeCodeCamp/no-ie
...
Remove support for Internet Explorer
3 years ago
Simon Legner
5c3b7d14b4
Update Immutable.js documentation (4.0.0)
3 years ago
Simon Legner
a50f11fbe7
Update OpenJDK documentation (17)
3 years ago
Simon Legner
b67cf41c0a
Fix cookie warning
...
> Some cookies are misusing the recommended “SameSite“ attribute
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite
3 years ago
Simon Legner
902058f430
Remove classList polyfill
3 years ago
Simon Legner
1040744f55
Update pandas documentation (1.3.4)
3 years ago
Simon Legner
9e880425e2
Update Go documentation (1.17.2)
3 years ago
Simon Legner
9f50c2cf49
Update Perl documentation (5.34.0)
3 years ago
Simon Legner
03d2817300
Immediately apply layout settings
3 years ago
Simon Legner
d2495fbc2e
Settings: justified layout and hyphenation
3 years ago
Simon Legner
3d8747d469
Update JavaScript documentation
3 years ago
Simon Legner
c34bbc965c
Update HTTP documentation
3 years ago
Simon Legner
db2d5e6bfb
compat_tables: unknown
3 years ago
Simon Legner
296c0b7807
Update ESLint documentation (8.0.1)
3 years ago
Simon Legner
905af1fb82
Update CoffeeScript documentation (2.6.1)
3 years ago
Simon Legner
0f707c2c68
CMake: re-enable syntax highlighting
3 years ago
Daniel Murphy
8d2c6aa507
Update vendored Prism.js to 1.25.0
3 years ago
Simon Legner
b5cfc8c7ec
Update Babel documentation (7.14.8)
3 years ago
Enoc
ff450559f1
Update CMake documentation (3.21)
4 years ago
Simon Legner
fa94453069
Update Fish documentation (3.3.0)
4 years ago
Enoc
8ccdaa7da7
Update Underscore.js documentation (1.13.1)
4 years ago
Oliver Eyton-Williams
6f84038b4d
fix: allow 0.1 interval steps for spaceTimeout
...
If the step is not specified, the default validation requires that the
values are integers. Since the default value is 0.5, this prevented the
settings from being changed.
Now the step is 0.1 which should give enough control without clashing
with the default
4 years ago
Enoc
dd985908a1
Update Nim documentation (1.4.8)
...
- Add source code links
4 years ago
Shashank Jain
a2a1733fcc
Applied seconds input settings patch
4 years ago
shashank1207
98fa6a9e5e
changed defaults
4 years ago
shashank1207
8bdc096075
Update assets/javascripts/app/shortcuts.coffee
...
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
4 years ago
Shashank Jain
7932a457af
Added a checkbox to enable scroll by space
4 years ago
Shashank Jain
3d5ff7d5fa
Changes the timelimit between spacebar and last keypress
4 years ago
Enoc
de58a6366a
Update Jest documentation (27.0.4)
4 years ago
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