You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# - This is equivalent to original URL option present in draft settings
91
+
# of a post in Hashnode editor.
92
+
# - This is useful when you want to publish a post that is already
93
+
# published on another platform.
94
+
canonical:
95
+
96
+
97
+
# Hide from Hashnode Community
98
+
# Boolean | Optional
99
+
# Default value: false // by default the post will be visible in the Hashnode's public feed.
100
+
# Ex: true
101
+
# - This is equivalent to "HIDE ARTICLE FROM HASHNODE FEED" option
102
+
# present in draft settings of a post in Hashnode editor.
103
+
# - This is useful when you want to publish a post to your publication
104
+
# only but hide it from the Hashnode's public feed.
105
+
# - You can also update a post to enable/disable this later.
106
+
hideFromHashnodeCommunity:
107
+
108
+
# SEO Title
109
+
# String | Optional
110
+
# Ex: Top 4 React UI Libraries for 2023
111
+
# - This is equivalent to SEO TITLE option present in draft settings
112
+
# of a post in Hashnode editor.
113
+
# - You can also update a post to update this later.
114
+
seoTitle:
115
+
116
+
# SEO Description
117
+
# String | Optional
118
+
# Ex: A curated list of the best React UI libraries for 2023
119
+
# - This is equivalent to SEO DESCRIPTION option present in
120
+
# draft settings of a post in Hashnode editor.
121
+
# - You can also update a post to update this later.
122
+
seoDescription:
123
+
124
+
# Disable comments for a post
125
+
# Boolean | Optional
126
+
# Default value: false // by default the comments will be enabled for the post.
127
+
# Ex: true
128
+
# - This is equivalent to "DISABLE COMMENTS" option present in
129
+
# draft settings of a post in Hashnode editor.
130
+
# - You can also update a post to enable/disable this later.
131
+
disableComments:
132
+
133
+
# Slug of the series that you want your post to be a part of
134
+
# String | Optional
135
+
# Ex: react-series
136
+
# - This is equivalent to "ADD TO A SERIES" option present in
137
+
# draft settings of a post in Hashnode editor.
138
+
# - If invalid series is given, the post will not be added to any series.
139
+
# - You can update the post again to correct it later.
140
+
# - You can find series information from the series section in your publication dashboard.
141
+
# You can also edit the series information from there.
142
+
seriesSlug: // slug of the series
143
+
144
+
# Table of contents
145
+
# Boolean | Optional
146
+
# Default value: false // by default the table of contents will not be added to the post.
147
+
# Ex: true
148
+
# - This is equivalent to "GENERATE TABLE OF CONTENTS" option
149
+
# present in draft settings of a post in Hashnode editor.
150
+
# - If true, the table of contents will be added to the post.
151
+
# - You can also update a post to enable/disable this later.
152
+
enableToc:
153
+
154
+
# Save post as draft
155
+
# Boolean | Optional
156
+
# Default value: false // by default the post will be published.
157
+
# Ex: true
158
+
# - If true, the post will be saved as a draft.
159
+
# - You can also update a draft with all the above attributes.
160
+
# - This draft will be available under Drafts section of the
161
+
# left sidebar in your publication dashboard.
162
+
# - Note: Once you remove this attribute, the post will be
163
+
# published and removed from drafts automatically.
164
+
# - This follows the same rules as a post create and update
165
+
# flow as well as the slug rules mentioned since
166
+
# beginning of this manual.
167
+
saveAsDraft:
168
+
169
+
170
+
# Note:
171
+
# This is in beta currently
172
+
# Newsletter and Post scheduling is NOT supported as of now.
173
+
35
174
---
36
-
37
-
Enter article body here
38
175
```
39
176
* List of tags can be found here https://github.com/Hashnode/support/blob/main/misc/tags.json
40
177
* Make sure you haven't included **ignorePost** in the frontmatter by mistake.
41
-
* Uninstalling app via Github will remove it from all the publications that the repo was connected to. If you want to specifically remove the installation from a particular publication, do it from it's Dashboard (Integrations section).
42
-
*Creating an article with same slug as another article in the publication will overwrite the old article.
178
+
* Uninstalling app via Github will remove it from all the publications that the repo was connected to. If you want to specifically remove the installation from a particular publication, do it from it's Dashboard (GitHub section).
179
+
*You cannot create a new draft or a post with already published slugs
43
180
* Do note that maximum of 10 file changes are respected in one particular commit.
0 commit comments