Merge pull request #260 from rtfpessoa/update-docs
docs: Update readme with configuration details
This commit is contained in:
commit
6cebab0e7f
4 changed files with 7 additions and 5 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -4,7 +4,7 @@ on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: "!contains(github.event.head_commit.message, 'skip ci')"
|
if: contains(github.event.head_commit.message, '[skip ci]') == false
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
|
|
|
||||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -9,8 +9,8 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
version:
|
version:
|
||||||
if:
|
if:
|
||||||
"github.event.pull_request.merged && !contains(github.event.head_commit.message, 'skip ci') &&
|
github.event.pull_request.merged && contains(github.event.head_commit.message, '[skip ci]') == false &&
|
||||||
!contains(github.event.head_commit.message, 'skip release')"
|
contains(github.event.head_commit.message, '[skip release]') == false
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container:
|
container:
|
||||||
image: codacy/git-version
|
image: codacy/git-version
|
||||||
|
|
|
||||||
4
.github/workflows/website.yml
vendored
4
.github/workflows/website.yml
vendored
|
|
@ -9,8 +9,8 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if:
|
if:
|
||||||
"github.event.pull_request.merged && !contains(github.event.head_commit.message, 'skip ci') &&
|
github.event.pull_request.merged && contains(github.event.head_commit.message, '[skip ci]') == false &&
|
||||||
!contains(github.event.head_commit.message, 'skip release')"
|
contains(github.event.head_commit.message, '[skip release]') == false
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
|
|
|
||||||
|
|
@ -283,6 +283,8 @@ highlightCode(): void
|
||||||
- `smartSelection`: allow selection of the code without including line numbers of line prefixes: `true` or `false`,
|
- `smartSelection`: allow selection of the code without including line numbers of line prefixes: `true` or `false`,
|
||||||
default is `true`
|
default is `true`
|
||||||
|
|
||||||
|
> NOTE: All the options from Diff2Html are also valid configurations in Diff2HtmlUI
|
||||||
|
|
||||||
### Diff2HtmlUI Browser
|
### Diff2HtmlUI Browser
|
||||||
|
|
||||||
#### Mandatory HTML resource imports
|
#### Mandatory HTML resource imports
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue