diff --git a/LICENSE b/LICENSE index 197ac83..f81ee04 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2015-2019 Alex Yatskov +Copyright 2015-2022 Alex Yatskov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 3ceec9a..44e083f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ in Md2Vim's design. If you already have the Go environment and toolchain set up, you can get the latest version by running: ``` -$ go get github.com/FooSoft/md2vim +$ go install foosoft.net/projects/md2vim@latest ``` Otherwise, you can use the [pre-built binaries](https://github.com/FooSoft/md2vim/releases) from the project page. diff --git a/go.mod b/go.mod index 5549a43..64ffae7 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ -module github.com/FooSoft/md2vim +module foosoft.net/projects/md2vim -go 1.16 +go 1.18 require github.com/russross/blackfriday v1.6.0 diff --git a/md2vim.go b/md2vim.go index 4b36ef3..62f6582 100644 --- a/md2vim.go +++ b/md2vim.go @@ -1,24 +1,3 @@ -/* - * Copyright (c) 2015-2021 Alex Yatskov - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - package main import ( diff --git a/vimdoc.go b/vimdoc.go index dabc282..c4458fc 100644 --- a/vimdoc.go +++ b/vimdoc.go @@ -1,24 +1,3 @@ -/* - * Copyright (c) 2015-2021 Alex Yatskov - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - package main import (