forked from vaakash/git-it-write
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
168 lines (110 loc) · 6.89 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Git it Write - Write posts from Github
Contributors: vaakash
Author URI: https://www.aakashweb.com/
Plugin URI: https://www.aakashweb.com/wordpress-plugins/git-it-write/
Tags: github, markdown, editor, publish, posts, wordpress, import, custom post types
Donate link: https://www.paypal.me/vaakash/
License: GPLv2 or later
Requires PHP: 5.3
Requires at least: 4.4
Tested up to: 5.8
Stable tag: 1.3
Publish markdown files present in a Github repository as posts to WordPress automatically
## Description
Git it Write allows to publish the markdown files present in a Github repository to your WordPress site. So with this plugin, whenever the files are added, updated in the repository the WordPress post will be added, updated accordingly.
This plugin is inspired from static site generators like `Jekyll`, `Next.js`, `Gatsby.js` on how content is written is markdown. This is a similar idea for WordPress where markdown files are parsed from Github and published as posts.
**Live example:** [Source github repository](https://github.com/vaakash/aakash-web) (`/docs/` folder) to [Posts published](https://www.aakashweb.com/docs/)
This allows people to collaborate with the post, share edits and suggestions in Github which when pulled the WordPress post will be updated automatically.
If a repository has files in the below structure,
docs\
guide\
introduction.md
getting-started.md
help\
faq.md
Then below posts will be created like below (if permalinks are configured and the post type supports "hierarchy" i.e creating posts level by level (example: pages))
https://example.com/docs/guide/introduction/
https://example.com/docs/guide/getting-started/
https://example.com/help/faq/
### 🎲 What is the use of this plugin ?
* Publish posts using the files in your Github repository.
* Write your posts in Markdown format.
* Write your posts on your desktop application (Notepad++, Sublime Text, Visual studio code).
* Collaborate, involve communities on the files in Github and publish them on WordPress.
* All the advantages of Git and it's version management system.
### 🚀 Some use cases
* Can be used for documentation posts, FAQs, Wikis etc.
* Write blog posts.
* Any articles which may need community involvement.
### ✨ Features
* Markdown will be processed and post will be published as HTML.
* Images used in the source file will be uploaded to WordPress.
* Relative links are supported.
* Set post properties like post status, title, order, category, tags etc, in the source file itself.
* Webhook support (whenever repository is changed, it updates the plugin to pull the latest changes and publish the posts)
* Add multiple repositories.
* Publish to any post type.
* Posts are published in hierarchial manner if they are under folders. Example: a file `dir1/hello.md` will be posted as `dir1/hello/` in WordPress if the post type supports hierarchy.
* Support for post metadata like setting tags, categories, custom fields.
### ℹ Note
* Only Markdown files will be pulled and published right now
* Posts won't be deleted when it's source file is deleted on Github.
* It is preferred to have a permalink structure.
* It is preferred to select a post type which supports hierarchy.
* Images have to present only in `_images` folder in the repository root. Markdown files have to relatively use them in the file.
### 🥗 Recommendation
It is recommended that a permalink structure is enabled in the WordPress site so that, if you have file under `docs\reference\my-post.md` then a post is published like `https://example.com/docs/reference/my-post/`. This will be the result when post type has hierarchy support. They will be posted level by level for every folder in the repository. The folder's post will be taken from the `index.md` file if exists under that folder.
### 🏃♂️ Using the plugin
1. Have a Github repository where all the source files (markdown files) are maintained (organized in folders if needed the exact structure)
1. In the plugin settings page, click add a new repository.
1. Enter the details of the repository to pull the posts from and under what post type to publish them.
1. Save the settings
1. Click "Pull the posts" and then "Pull only" changes. This will publish posts for all the markdown files.
1. To automatically update posts whenever repository is updated, configure webhook as mentioned in the settings page.
### Links
* [Documentation](https://www.aakashweb.com/docs/git-it-write/)
* [Support forum/Report bugs](https://www.aakashweb.com/forum/)
* [Donate](https://www.paypal.me/vaakash/)
* [Contribute on Github](https://github.com/vaakash/git-it-write)
## Installation
1. Extract the zipped file and upload the folder `git-it-write` to to `/wp-content/plugins/` directory.
1. Activate the plugin through the `Plugins` menu in WordPress.
1. Open the admin page from the "Git it Write" link under the settings menu.
## Frequently Asked Questions
Please visit the [plugin documentation page](https://www.aakashweb.com/docs/git-it-write/) for complete list of FAQs.
### When a post is edited in WordPress will that update the file in the Github repository ?
No. This plugin won't sync post content. It is a one way update. Only changes made to the Github repository will update the posts and not otherwise.
### What all files in the repository will be published ?
All markdown files will be published as posts.
### What are not published ?
Any folder/file starting with `_` (underscore), `.` (dot) won't be considered for publishing.
### Can I pull posts from a specific branch in the repository ?
Yes, if you want to pull posts from a branch in a repository then you can specify it in the plugin's repository settings page.
### Can I pull posts from a specific folder in the repository ?
Yes, if you want to pull posts from a folder in a repository then you can specify it in the plugin's repository settings page. For example, if a repository has a folder `website\main\docs` and if you want to pull only from docs folder, then you can specify `website\main\docs` in the plugin settings.
## Screenshots
1. Your files in a Github repository
2. Posts pulled and published from Github.
3. Content of the published post.
4. Published post.
5. Plugin admin page.
6. Repository configuration page.
## Changelog
### 1.3
* New: Support for git branches (Thanks to https://github.com/AppalachiaInteractive for the contribution)
* New: Logs directory has been changed to the uploads directory.
* Fix: Minor admin page enhancements.
### 1.2
* New: Support for custom fields
* New: New shortcode attribute in `[giw_edit_link]` to automatically wrap in `p` tag.
* Fix: Added permission callback for the webhook REST API.
* Fix: Minor admin UI enhancements.
### 1.1
* New: Support for Parsedown extra
### 1.0.1
* Fix: Webhook is changed to `POST` method.
* Fix: Readme formatting.
### 1.0
* First version of the plugin.
## Upgrade Notice
Version 1.0 is the first version of the plugin.