docs: fix non-escaped URLs

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2021-06-08 18:40:08 -07:00
parent 606398b69a
commit 940d9ccfee
6 changed files with 10 additions and 14 deletions

View File

@ -110,7 +110,7 @@ _No output._
## #Op ## #Op
One operation in a pipeline #Op does not current enforce the op spec at full resolution, to avoid triggering performance issues. See https://github.com/dagger/dagger/issues/445 To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop" One operation in a pipeline
### #Op Inputs ### #Op Inputs

View File

@ -26,11 +26,11 @@ A git repository
### #Repository Inputs ### #Repository Inputs
| Name | Type | Description | | Name | Type | Description |
| ------------- |:-------------: |:-------------: | | ------------- |:-------------: |:-------------: |
|*remote* | `string` |Git remote. Example: "https://github.com/dagger/dagger" | |*remote* | `string` |Git remote. Example: `"https://github.com/dagger/dagger"` |
|*ref* | `string` |Git ref: can be a commit, tag or branch. Example: "main" | |*ref* | `string` |Git ref: can be a commit, tag or branch. Example: "main" |
|*subdir* | `*null \| string` |(optional) Subdirectory | |*subdir* | `*null \| string` |(optional) Subdirectory |
### #Repository Outputs ### #Repository Outputs

View File

@ -5,7 +5,6 @@ sidebar_label: yarn
# dagger.io/js/yarn # dagger.io/js/yarn
Yarn is a package manager for Javascript applications Yarn is a package manager for Javascript applications
https://yarnpkg.com
## #Package ## #Package

View File

@ -3,11 +3,9 @@ package op
// One operation in a pipeline // One operation in a pipeline
// //
// #Op does not current enforce the op spec at full resolution, to avoid // FIXME: #Op does not current enforce the op spec at full resolution, to avoid
// triggering performance issues. See // FIXME: triggering performance issues. See https://github.com/dagger/dagger/issues/445
// https://github.com/dagger/dagger/issues/445 // FIXME: To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop"
//
// To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop"
#Op: { #Op: {
do: string do: string
... ...

View File

@ -10,7 +10,7 @@ import (
#Repository: { #Repository: {
// Git remote. // Git remote.
// Example: "https://github.com/dagger/dagger" // Example: `"https://github.com/dagger/dagger"`
remote: string @dagger(input) remote: string @dagger(input)
// Git ref: can be a commit, tag or branch. // Git ref: can be a commit, tag or branch.

View File

@ -1,5 +1,4 @@
// Yarn is a package manager for Javascript applications // Yarn is a package manager for Javascript applications
// https://yarnpkg.com
package yarn package yarn
import ( import (