I need to add taglist at todos plain text feed, like this:
Context A :
- [Completed: 2010-11-08] install tracks (Company)[Tag: GTD,Linux]
* [Completed: 2010-11-07] install new FreeBSD Server (Company)[Tag: FreeBSD]
just edit tracks/app/views/todos/_text_todo.rhtml, add line:
result_string << “[Tag: ” + todo.tag_list + “]”
after
result_string << “(” + todo.project.name + “)”


