diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-02-09 03:15:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 03:15:52 +0100 |
commit | 7546efb83afa39770be5c7b9df72edc115e59a5b (patch) | |
tree | 0066c2b9e833e7dd7fd8cfafc3a1d05d15f40000 /core/testdata/format/gfm | |
parent | 683f6bb418bada9c90d2ffbd5040b3968e1c3522 (diff) | |
download | dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.gz dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.bz2 dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.zip |
Remove old test data (#2824)
Diffstat (limited to 'core/testdata/format/gfm')
-rw-r--r-- | core/testdata/format/gfm/listInTableCell.kt | 8 | ||||
-rw-r--r-- | core/testdata/format/gfm/listInTableCell.md | 17 | ||||
-rw-r--r-- | core/testdata/format/gfm/sample.kt | 18 | ||||
-rw-r--r-- | core/testdata/format/gfm/sample.md | 20 |
4 files changed, 0 insertions, 63 deletions
diff --git a/core/testdata/format/gfm/listInTableCell.kt b/core/testdata/format/gfm/listInTableCell.kt deleted file mode 100644 index 2f4fdf54..00000000 --- a/core/testdata/format/gfm/listInTableCell.kt +++ /dev/null @@ -1,8 +0,0 @@ -class Foo { - /** - * 1. Foo - * 1. Bar - */ - fun foo() { - } -} diff --git a/core/testdata/format/gfm/listInTableCell.md b/core/testdata/format/gfm/listInTableCell.md deleted file mode 100644 index 1cafb61a..00000000 --- a/core/testdata/format/gfm/listInTableCell.md +++ /dev/null @@ -1,17 +0,0 @@ -[test](../../index.md) / [Foo](./index.md) - -# Foo - -`class Foo` - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | `Foo()` | - -### Functions - -| Name | Summary | -|---|---| -| [foo](foo.md) | <ol><li>Foo</li><li>Bar</li></ol>`fun foo(): Unit` | diff --git a/core/testdata/format/gfm/sample.kt b/core/testdata/format/gfm/sample.kt deleted file mode 100644 index 3300d2c8..00000000 --- a/core/testdata/format/gfm/sample.kt +++ /dev/null @@ -1,18 +0,0 @@ -/** - * The class Foo. - */ -class Foo { - /** - * The method bar. - */ - fun bar() { - - } - - /** - * The method baz. - */ - fun baz() { - - } -}
\ No newline at end of file diff --git a/core/testdata/format/gfm/sample.md b/core/testdata/format/gfm/sample.md deleted file mode 100644 index a9464ea3..00000000 --- a/core/testdata/format/gfm/sample.md +++ /dev/null @@ -1,20 +0,0 @@ -[test](../../index.md) / [Foo](./index.md) - -# Foo - -`class Foo` - -The class Foo. - -### Constructors - -| Name | Summary | -|---|---| -| [<init>](-init-.md) | The class Foo.`Foo()` | - -### Functions - -| Name | Summary | -|---|---| -| [bar](bar.md) | The method bar.`fun bar(): Unit` | -| [baz](baz.md) | The method baz.`fun baz(): Unit` | |