Skip to content

Commit

Permalink
fix: add bullets to toc
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtabrams committed Jun 10, 2020
1 parent d8eab2e commit 059d31f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2020-06-10
### Fixed
- Add bullet points to the table of contents.

## [0.1.0] - 2020-06-09
### Added
- Created a script with the basic functionality.

[Unreleased]: https://github.com/adamtabrams/ideas/compare/0.1.0...HEAD
[Unreleased]: https://github.com/adamtabrams/ideas/compare/0.2.0...HEAD
[0.2.0]: https://github.com/adamtabrams/ideas/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/adamtabrams/ideas/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion ideas
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ add_idea() {
idea_file="$repo/$idea.md"
[ -e "$idea_file" ] && echo "$idea_file already exists" >&2 && return 1

printf "\n[%s](%s.md)\n" "$idea" "$idea" >> "$repo/README.md"
printf "\n- [%s](%s.md)\n" "$idea" "$idea" >> "$repo/README.md"
printf "## %s\n\n\n" "$idea" > "$idea_file"
${EDITOR:-vi} "$idea_file"
git add README.md "$idea_file" && git commit -m "added $idea" && git push
Expand Down

0 comments on commit 059d31f

Please sign in to comment.