Fix spacing in Markdown lists and definitions (#22)

This commit is contained in:
Dervex 2024-04-08 14:21:36 +02:00 committed by Harsh Shandilya
parent 10f5344bf2
commit e60399f488
8 changed files with 30 additions and 41 deletions

View File

@ -13,23 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* First feature that is gonna make us money.
* Quite a few bugs, sorry in advance!
- First feature that is gonna make us money.
- Quite a few bugs, sorry in advance!
### Changed
* Reworked the login system. You have to provide a password now!
- Reworked the login system. You have to provide a password now!
## [0.1.0] - 2019-09-05
### Added
* Initial release :tada:
- Initial release :tada:
[Unreleased]: https://github.com/foo/bar/compare/0.3.0...HEAD
[0.3.0]: https://github.com/foo/bar/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/foo/bar/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/foo/bar/compare/1625533e04119e8496b14d5e18786f150b4fce4d...0.1.0

View File

@ -11,8 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* Everything since the beginning!
- Everything since the beginning!
[Unreleased]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/0.1.0...HEAD
[0.1.0]: https://github.com/thomaseizinger/github-action-gitflow-release-workflow/compare/f29bb46e40c323fe0af44dda68c6f60e5b263c64...0.1.0

View File

@ -13,23 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* First feature that is gonna make us money.
* Quite a few bugs, sorry in advance!
- First feature that is gonna make us money.
- Quite a few bugs, sorry in advance!
### Changed
* Reworked the login system. You have to provide a password now!
- Reworked the login system. You have to provide a password now!
## [0.1.0] - 2019-09-05
### Added
* Initial release :tada:
- Initial release :tada:
[Unreleased]: https://github.com/foo/bar/compare/0.3.0...HEAD
[0.3.0]: https://github.com/foo/bar/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/foo/bar/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/foo/bar/compare/1625533e04119e8496b14d5e18786f150b4fce4d...0.1.0

View File

@ -11,29 +11,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Our main theme is now blue instead of red.
- Our main theme is now blue instead of red.
## [0.2.0] - 2019-09-13
### Added
* First feature that is gonna make us money.
* Quite a few bugs, sorry in advance!
- First feature that is gonna make us money.
- Quite a few bugs, sorry in advance!
### Changed
* Reworked the login system. You have to provide a password now!
- Reworked the login system. You have to provide a password now!
## [0.1.0] - 2019-09-05
### Added
* Initial release :tada:
- Initial release :tada:
[Unreleased]: https://github.com/foo/bar/compare/0.3.0...HEAD
[0.3.0]: https://github.com/foo/bar/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/foo/bar/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/foo/bar/compare/1625533e04119e8496b14d5e18786f150b4fce4d...0.1.0

View File

@ -11,29 +11,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Our main theme is now blue instead of red.
- Our main theme is now blue instead of red.
## [0.2.0] - 2019-09-13
### Added
* First feature that is gonna make us money.
* Quite a few bugs, sorry in advance!
- First feature that is gonna make us money.
- Quite a few bugs, sorry in advance!
### Changed
* Reworked the login system. You have to provide a password now!
- Reworked the login system. You have to provide a password now!
## [0.1.0] - 2019-09-05
### Added
* Initial release :tada:
- Initial release :tada:
[Unreleased]: https://github.com/foo/bar/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/foo/bar/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/foo/bar/compare/0.1.0...v0.2.0
[0.1.0]: https://github.com/foo/bar/compare/1625533e04119e8496b14d5e18786f150b4fce4d...0.1.0

View File

@ -11,29 +11,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Our main theme is now blue instead of red.
- Our main theme is now blue instead of red.
## [0.2.0] - 2019-09-13
### Added
* First feature that is gonna make us money.
* Quite a few bugs, sorry in advance!
- First feature that is gonna make us money.
- Quite a few bugs, sorry in advance!
### Changed
* Reworked the login system. You have to provide a password now!
- Reworked the login system. You have to provide a password now!
## [0.1.0] - 2019-09-05
### Added
* Initial release :tada:
- Initial release :tada:
[Unreleased]: https://github.com/foo/bar/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/foo/bar/compare/0.2.0...v0.3.0
[0.2.0]: https://github.com/foo/bar/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/foo/bar/compare/1625533e04119e8496b14d5e18786f150b4fce4d...0.1.0

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -277,6 +277,11 @@ export default async function updateChangelog(
owner,
repo,
})
.data("settings", {
listItemIndent: "1",
tightDefinitions: true,
bullet: "-"
})
.use(stringify)
.process(file);
}