I don't think I currently support textcolor - it throws a few wrenches in my design. What I'll probably do is, before I process all of the lines normally for the file, I'll go through and take advantage of the pango syntax to transform the file as needed. So
would internally become
handling it this way is more likely to work without introducing large bugs. I can look at the other directives that are similar to textcolor and handle them in a similar way. Can you think of any reason this would not work?
Thanks,
Mike
Code:
{textcolor red}
[D]When I wake up, yeah, I know I'm gonna be,
I'm gonna [G]be the man who [A]wakes up next to [D]you.
[D]When I go out, yeah, I know I'm gonna be
{textcolor}
would internally become
Code:
<span color="red">[D]When I wake up, yeah, I know I'm gonna be,</span>
<span color="red"> I'm gonna [G]be the man who [A]wakes up next to [D]you.</span>
<span color="red"> [D]When I go out, yeah, I know I'm gonna be</span>
handling it this way is more likely to work without introducing large bugs. I can look at the other directives that are similar to textcolor and handle them in a similar way. Can you think of any reason this would not work?
Thanks,
Mike