So, let’s take this example of a project being constructed with metadata-driven design, and we’ll choose the ubiquitous Confluence as our wiki’s platform for hosting this project’s documentation. After we’re finished with the necessary prerequisite steps for creating our wiki (creating a Space, making templates, etc.), we write a page for our online manual, specifically about the dynamic nature of our system’s data structures. Now, in order to paint a more complete picture for this explanation, we are ready to add an interactive segment. So, what do we do?
First, we need to think of a succinct example with the main purpose of being an illustration. (In other words, its fidelity to the overall subject is less important than its ability to convey the point at hand.) In our case, we will choose to demonstrate the dynamic aspect of our data structures by using an example that will generate XML from a user’s input. In order to accomplish our stated goal, the list of available tools can vary depending on the chosen platform. As one option, Confluence allows the use of Javascript within their pages, and the inclusion of JQuery is provided by default. You will have to execute the administrative option that allows custom HTML within your Confluence pages, and by doing so, you could leave your wiki vulnerable to attack. If this form of insecurity is not acceptable, another option is available: Confluence plugins. There are a number of Confluence plugins available to be purchased that can provide our sought functionality (such as Balsamiq, Protoshare, and Bob Swift). If you’re feeling particularly adventurous and have a penchant for danger, you could utilize the Confluence API and integrate external servers with your wiki system. In our case, though, we want to have the power inherent in a programming language, so we will accept the small risk associated with allowing the use of actual web programming. Instead of simply having an image of a table (as shown in the screenshot above), we will generate an editable table within our wiki page through the use of HTML and Javascript. On the right side of our wiki page, we will place a div tag, of which we will dynamically update with the contents from our modifiable table:
Even though it might require some investment, such a small utility can convey so much of an idea without the usual amount of required verbosity.

