diff --git a/docs/README.md b/docs/README.md index 900a418..74aaa81 100644 --- a/docs/README.md +++ b/docs/README.md @@ -15,6 +15,7 @@ - [The Popover Macro](popover.md) - [The UI Macro](ui-macro.md) - [The Fading Macro Set](fading-macros.md) + - [The Disable Macro](disable-macro.md) - [The CSS Macro](css-macro.md) - [The Notify Macro](notify-macro.md) - [The Meter Macro Set](meter-macros.md) @@ -110,6 +111,12 @@ This code is dedicated to the public domain. You **don't** need to provide cred > [!TIP] > If you have any questions or concerns about this, refer to the [license](https://github.com/ChapelR/custom-macros-for-sugarcube-2/blob/master/LICENSE) or reach out to me. +#### This macro set features contributions from these awesome folks: + +- [Thomas M. Edwards](https://github.com/tmedwards) +- [Matilde Park](https://github.com/matildepark) +- [Zachary Chandler](https://github.com/Zachac) + ### Donations > [!NOTE] diff --git a/docs/articles.md b/docs/articles.md index df7716c..afdbf93 100644 --- a/docs/articles.md +++ b/docs/articles.md @@ -98,14 +98,14 @@ This function takes a string and finds the correct indefinite article, then appe **Examples**: ``` -setup.articles.find('UFO'); // 'a UFO' -setup.articles.find('animal'); // 'an animal' -setup.articles.find('1'); // 'a 1' -setup.articles.find('86'); // 'an 86' -setup.articles.find('honorable man'); // 'an honorable man' -setup.articles.find('heir to the king'); // 'an heir to the king' -setup.articles.find('horrible day'); // 'a horrible day' -setup.articles.find('painting'); // 'a painting' +setup.articles.output('UFO'); // 'a UFO' +setup.articles.output('animal'); // 'an animal' +setup.articles.output('1'); // 'a 1' +setup.articles.output('86'); // 'an 86' +setup.articles.output('honorable man'); // 'an honorable man' +setup.articles.output('heir to the king'); // 'an heir to the king' +setup.articles.output('horrible day'); // 'a horrible day' +setup.articles.output('painting'); // 'a painting' ``` #### Function: `setup.articles.override()` diff --git a/docs/changelog.md b/docs/changelog.md index 963f107..30b09be 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,11 @@ [Back to the main page](./README.md). +### November 24, 2020 (v2.7.0) + +- **[New]** Added the `<>` macro. +- **[Update]** Updated the meter macro set. Now has a `this.settings.id` property. + ### August 2, 2020 (v2.6.1) - **[Update]** Updated the event macro set. diff --git a/docs/demo/index.html b/docs/demo/index.html index 8864e57..d1f980c 100644 --- a/docs/demo/index.html +++ b/docs/demo/index.html @@ -103,6 +103,7 @@