Webmention-comment for testing. Link another post to mention. We don't mention tags!
126 |Этой страницы больше нет
Это пробная заметка, упоминающая мой сайт.
96 |├── testdata ├── page │ ├── page │ └── index.html ├── prod │ ├── about.html │ ├── index.html │ ├── tags │ │ ├── a │ │ │ ├── index.html │ │ │ └── index.xml │ │ └── index.html │ ├── index.xml │ ├── posts │ │ ├── 1 │ │ │ └── index.html │ │ ├── 2 │ │ │ └── index.html │ │ ├── 4 │ │ │ └── index.html │ │ ├── index.xml │ │ └── index.html │ ├── extra_tag.html │ ├── .htaccess │ └── ignored_css.html └── staging │ ├── about.html │ ├── tags │ ├── index.html │ ├── a │ │ ├── index.html │ │ └── index.xml │ └── b │ │ ├── index.html │ │ └── index.xml │ ├── other.xml │ ├── index.xml │ ├── posts │ ├── 1 │ │ └── index.html │ ├── 2 │ │ └── index.html │ ├── 3 │ │ └── index.html │ ├── 4 │ │ └── index.html │ ├── index.xml │ └── index.html │ ├── index.html │ ├── .htaccess │ ├── extra_tag.html │ └── ignored_css.html ├── codecov.yml ├── .gitignore ├── SOURCE.txt ├── .github ├── dependabot.yml └── workflows │ ├── codecov.yml │ ├── build.yml │ ├── golangci-lint.yml │ └── release.yml ├── go.mod ├── config.toml ├── websub_test.go ├── go.sum ├── version_generate.go ├── websub.go ├── CHANGELOG.md ├── README.md ├── main_test.go ├── main.go └── LICENSE /testdata/page/page: -------------------------------------------------------------------------------- 1 | ../page -------------------------------------------------------------------------------- /testdata/prod/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/tags/a/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/tags/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/tags/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/tags/a/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/staging/tags/b/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/prod/index.xml: -------------------------------------------------------------------------------- 1 | old contents 2 | -------------------------------------------------------------------------------- /testdata/staging/other.xml: -------------------------------------------------------------------------------- 1 | new file 2 | -------------------------------------------------------------------------------- /testdata/prod/posts/index.xml: -------------------------------------------------------------------------------- 1 | old contents 2 | -------------------------------------------------------------------------------- /testdata/prod/tags/a/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | require_changes: true 3 | -------------------------------------------------------------------------------- /testdata/staging/posts/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/tags/a/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /testdata/staging/tags/b/index.xml: -------------------------------------------------------------------------------- 1 | same contents 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | /static-webmentions 3 | /release/ 4 | /debian.changelog 5 | -------------------------------------------------------------------------------- /testdata/staging/index.html: -------------------------------------------------------------------------------- 1 | something 2 | -------------------------------------------------------------------------------- /testdata/staging/posts/index.html: -------------------------------------------------------------------------------- 1 | something 2 | -------------------------------------------------------------------------------- /testdata/staging/posts/4/index.html: -------------------------------------------------------------------------------- 1 | something 2 | -------------------------------------------------------------------------------- /SOURCE.txt: -------------------------------------------------------------------------------- 1 | The source code for this software is available at 2 | https://evgenykuznetsov.org/go/static-webmentions 3 | -------------------------------------------------------------------------------- /testdata/prod/extra_tag.html: -------------------------------------------------------------------------------- 1 | something 2 |
Webmention-comment for testing. Link another post to mention. We don't mention tags!
126 |
133 |
134 |
135 |
136 |
137 |
138 |
Webmention-comment for testing - changed!. Link another post to mention. We don't mention tags!
126 |
133 |
134 |
135 |
136 |
137 |
138 |
Webmention-comment for testing - changed!. Link another post to mention. We don't mention tags!
126 |
133 |
134 |
135 |
136 |
137 |
138 |
Webmention-comment for testing. Link another post to mention. We don't mention tags!
126 |This line contains a link to a section of this same page! 127 |
This is a section of the post
129 |
136 |
137 |
138 |
139 |
140 |
141 |
Это пробная заметка, упоминающая мой сайт.
96 |