-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
13 changed files
with
120 additions
and
553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
test* | ||
output.* | ||
.env* | ||
config.json | ||
_debug* | ||
config.toml | ||
*_markdown/ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# type is a required field that specifies the type of the source or destination. | ||
# name is the name of the source or destination. It is used to refer to the source or destination when running the command. | ||
# overwrite is a boolean field that specifies whether to overwrite the file/post if it already exists. This is done by removing old files/posts that have the same title. | ||
# blog_url is the URL of the blog | ||
# content_dir is the directory where the markdown files are located | ||
[[destinations]] | ||
blog_url = 'https://example.com' | ||
name = 'blog' | ||
overwrite = false | ||
type = 'blogger' | ||
|
||
[[destinations]] | ||
content_dir = 'content' | ||
name = 'otherblog' | ||
overwrite = false | ||
type = 'markdown' | ||
|
||
[[sources]] | ||
blog_url = 'https://example.com' | ||
name = 'someblog' | ||
type = 'blogger' | ||
|
||
[[sources]] | ||
content_dir = 'content' | ||
name = 'aBlogInMarkdown' | ||
type = 'markdown' |
Oops, something went wrong.