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