in reply to Make a Markup Method in Perl?
Text markup, whether it's in human readable format such as HTML, or in a machine readable format such as with MS Office, targets a particular rendering engine. HTML targets web browsers (among other entities) that understand HTML. Let's say you manage to come up with a whiz-bang markup language that fits some well-defined niche. What use is it if there is no tool that knows how to render it?
Once you decide what you want to target (a browser, ...or who-knows-what else), then the markup language is already decided for you.
Perhaps you want to translate one simplistic markup language of your design into a more complex one that already exists; perl-j-markup2html, perl-j-markup2pod... whatever. What makes your new language better or more practical, and for what application, than what's already out there? Why would I want to learn perl-j-markup when I already know HTML?
Maybe you already have answers to these questions. If you do, you are well on your way to defining the problem and the use case. But with no use case, you're just in search of a problem that doesn't need a solution.
Dave
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Make a Markup Method in Perl?
by perl.j (Pilgrim) on May 16, 2012 at 09:55 UTC | |
by tinita (Parson) on May 16, 2012 at 12:04 UTC | |
by perl.j (Pilgrim) on May 16, 2012 at 18:48 UTC | |
by elTriberium (Friar) on May 16, 2012 at 19:01 UTC | |
|
Re^2: Make a Markup Method in Perl?
by Anonymous Monk on May 17, 2012 at 04:28 UTC |