brigade org playbook#1007
Conversation
drubgrubby
left a comment
There was a problem hiding this comment.
I haven't done a close inspection yet, but this looks good on first glance.
Once you fix the YAML exception you can push the changes and make a note here and in the issue that the changes have been fixed and we can check it and merge it.
In general, it's best not to create a pull request until you have completely solved the problem and you think the issue is ready to merge. Until then, you should just keep the comments and questions on the issue itself.
| title: Brigade Organizers Playbook | ||
| description: Each of the 80+ Code for America Brigades is an experiment which generates valuable learnings and new effective processes and practices. However, Brigades and other civic tech volunteer organizations need not start from scratch. This project aims to improve existing structures and create new ones that make it easier to share replicable processes and practices so that organizers and members can iterate on each others work, improving outcomes for the whole network. | ||
| image: /assets/images/projects/brigade-organizers-playbook.png | ||
| alt: 'Brigade Organizer's Playbook Extension Project' |
There was a problem hiding this comment.
(This has been edited from an earlier version. Bonnie suggested a diffefent fix.)
As you stated in the issue, this page is throwing a YAML exception.
The problem seems to be the apostrophe in line 6 - alt: 'Brigade Organizer's Playbook Extension Project'. It's trying to process the apostrophe within the string as part of the code and throwing a YAML Exception.
You can solve this by using double quotes outside the string:
The sentence would look like: alt: "Brigade Organizer's Playbook Extension Project"
|
Sorry about that! I'll keep that in mind for future issues. |
|
Addressed the problem in the issue! This should be good to merge. |
Fixes #965