Skip to content

Commit

Permalink
Add temporary header notification for upgrade (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlrt committed Oct 15, 2020
1 parent d9df7fe commit 6fb22f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/index.html
Expand Up @@ -66,7 +66,8 @@
hook.beforeEach(function(content) {
// Invoked each time before parsing the Markdown file.
// ...
return content + custommarkdown;
var custommarkdown = '!> Note that there was a breaking change introduced to guild repository scripts on 15th October. If you are coming from release before, please be sure to check out the [upgrade](upgrade.md) instructions\n'
return custommarkdown + '\n' + content;
});
//hook.doneEach(function() {
// // Invoked each time after the data is fully loaded, no arguments,
Expand Down

0 comments on commit 6fb22f6

Please sign in to comment.