
v3.9
• New for macOS Ventura
• Added ability to style based on item's `bodyContent`
• Added branch move commands (Option to see in Item menu)
• Updated instructions in user's guide for debugging scripts
• Fixed crash when failing to decode utf8 TaskPaper document
• Improved select existing tab behavior when selecting item in sidebar
With the styling addition you can now invent your own mini syntaxes in TaskPaper. For example the following style rule makes it so that any item that starts with `>>` will have red text:
```
item[bodyContent^=">>"] {
color: red;
}
```