-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Add pphtml tool #108
Comments
Looking at
Since this is an existing tool we probably want to do some small iterative PRs with these improvements so we can test them individually. Thumbing through it I saw some other improvements we could make which also means we probably need some meager samples to test against to detect regressions along the way. |
Given the successful implementation of the functionality of pptxt in GG2, I think it will end up being best to do pphtml in a similar way. |
Suggestion: include the functionality of the ppvimage in the new pphtml. |
As noted in this forum thread, pphtml attempts to check for unprocessed ppgen commands in the HTML. I think it's a bit too naive as-is. It just checks for a if ( $line =~ /<p>\./ ) {
printf LOGFILE ( "%d:0 Possible PPG command: %s\n", $count, $line );
} In the reimplementation it should be improved, I see one of two ways to do it:
|
Just putting a few notes here about pphtml to aid us in deciding what to do and how to link pphtml with Guiguts. Just thoughts that I didn't want to lose, rather than definite suggestions of things to do:
The text was updated successfully, but these errors were encountered: