We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
following the instructions in the README.md the following lines should be used to create lists of authors and categories
authors: <%=book.authors.map(author=>`\n - ${author}`).join('')%> categories: <%=book.categories.map(category=>`\n - ${category}`).join('')%>
But if the search result doesn't contain a catagory, the template fails.
Create a template containing the two lines Search for the book "Red Team Development and Operations"
( This book: https://books.google.com/books/about/Red_Team_Development_and_Operations.html?hl=&id=84w_zQEACAAJ )
The plugin fails to detect any category and the teplate fails.
The text was updated successfully, but these errors were encountered:
a workaround:
categories: <%=(book.categories||[]).map(category=>`\n - ${category}`).join('')%>
Sorry, something went wrong.
No branches or pull requests
following the instructions in the README.md
the following lines should be used to create lists of authors and categories
But if the search result doesn't contain a catagory, the template fails.
Example:
Create a template containing the two lines
Search for the book "Red Team Development and Operations"
( This book: https://books.google.com/books/about/Red_Team_Development_and_Operations.html?hl=&id=84w_zQEACAAJ )
The plugin fails to detect any category and the teplate fails.
The text was updated successfully, but these errors were encountered: