bell notificationshomepageloginNewPostedit profile

Topic : Is the idea of single-sourced documentation dead? Is the idea of single-sourced documentation dead? - selfpublishingguru.com

Login to follow topic

More posts by @Jamie945

3 Comments

Sorted by latest first Latest Oldest Best

10% popularity

Single sourcing is definitely not dead. Its best application is within some kind of content management system so that the content not only has a variety of output options, but can be remixed and recycled for other uses. As another answer pointed out, you must separate content from formatting for single-sourcing and content management to work.

Software developers have been using a similar model for ages. If you're going to be doing the same procedure in multiple places, use a function call instead of rewriting the code every time. Put your especially useful functions into a module that you can use in other programs. Keep your source code in a source control repository so you can revert if needed, and prevent conflicting edits to the same bit of code.


Load Full (0)

10% popularity

Joining John Smithers, single-sourcing is not only not dead, but increasingly vivid. There are new standards under revision right now. Darwin Information Type Architecture 1.2, for instance, was so anxiously expected that the OASIS team voluntarily leaked the working specification for users to implement, August 2010.
Every single, serious, content site is based on single-sourcing: Newspapers, radios, TV stations. Not to mention the bulk of government agencies.
Checkout the OASIS site and XML.org. You will find plenty of action there.


Load Full (0)

10% popularity

I do not know, why it should be dead. Writing and updating several sources with the same content is tedious, error-prone and will cost a lot of money.

The idea is to separate content and design. You write the content one time and you generate with different designs/formats websites, PDFs, books, eBooks, whatever.

The main approach is to store the content with its meta-information (e.g. paragraph begins here, paragraph ends there) into an XML file, the design information into a different file (style sheet) and let a computer program combining them. (You will have different style sheets for different formats.)

DocBook is a semantic markup language designed exactly for this purpose. You use it to define the content and the logical structure and generate the final product (book, webpage, ...) with different style sheets.


Load Full (0)

Back to top