RedRobotHero
Technical User
I'm revamping the webpage of a small volunteer-run newspaper. The paper is laid-out in Quark Xpress, and I want to know how I can quickly transfer the text of the paper into something I can put on the web page.
I've seen a few things that claim to convert the whole page, layout included, but I don't want to do that. Currently when we update the paper, we cut-and-paste the text from the Quark doc, and paste it into the html. With this approach, though, we have to manually re-apply the styles, which strikes me as duplicating the efforts of the layout editor.
For example, if the layout editor has a span of text, the style of which is marked as "byline" I want the corresponding text in the .html to be surrounded by
How can I do this so that conversion will be as quick as possible?
I've seen a few things that claim to convert the whole page, layout included, but I don't want to do that. Currently when we update the paper, we cut-and-paste the text from the Quark doc, and paste it into the html. With this approach, though, we have to manually re-apply the styles, which strikes me as duplicating the efforts of the layout editor.
For example, if the layout editor has a span of text, the style of which is marked as "byline" I want the corresponding text in the .html to be surrounded by
Code:
<span class="byline">...</span>
How can I do this so that conversion will be as quick as possible?