XML Attributes

. Many times, the XML elements contains extra information. This extra information is stored in some new attributes. The attributes in XML are extra information that we provide for the elements. Element can have any number of attributes with unique names. But before that, we must describe how attributes look like and how to use … Read more

How to Convert Markdown Documents to PDF

A markdown is a markup language to write readable documents and later convert it into different formats. You can use markdown syntax to write formatted documents whose style is already predefined and get a clean readable document. Read my previous post on how to learn about markdown and how to use it. These markdown files … Read more

What is Markdown and How to Use It?

The Markdown is a light-weight markup language, that provide syntax for formatting text documents. A word processor is easy to text editor where you can format text what you see. That is why these applications are WYSIWYG editors. In the MS Word like application, you must format the text and changes are visible immediately. Markdown … Read more

XML Document Type Declaration

In the previous post, you learned about XML declarations in detail, now we look into the document type declarations. The document type declarations are optional entries that includes DTD for validating your documents, root element, and any entities that you want to declare. Syntax The syntax for XML document type definition is given below. The … Read more

XML Declaration

In the previous article, you learned the structure of a XML document and know that an optional prolog exists before any XML root element. The very first line is an XML declaration that tells the XML processor that the document is XML language and markup. Declaration Structure The following image describes the structure of XML … Read more

XML Elements and Tree View

As we already know that XML is only to hold data and it gives complete freedom to choose any name for elements. XML don’t care about how the document looks or how we are going to use the data. The only requirement is to follow the rules of the XML document markup language. It is … Read more

XML Stylesheets

From the previous article, you know that XML does not have any implicit style information. One way to display formatted document is using the XHTML page. It seems alright, but does not provide full-fledged. styling for XML documents. We solve this problem by using an external stylesheet , just for the style and transformation of … Read more

How to View XML Documents

It is a well-known fact that you cannot view XML documents on its own, because it has not style information. There are only two ways to view XML documents on screen. Display in web browser like you do for webpages. Convert the XML information into HTML for display. It is true that there is no … Read more

XML Editors

Out of many XML software, XML editors are the most important ones, that allow you to create documents, update existing one and sometimes viewing the XML document. There are so many XML editors from simple text editors to highly customizable graphical text editors that show elements in colors and features to collapse or expand the … Read more

XML Technologies

XML is an open-source technology that is officially maintained by the W3C, and it is at Version 1.0 If you want to read the XML standard, then, visit the link to W3C website – Extensible Markup Language (XML) 1.0 (Fifth Edition) (w3.org). The XML technology is a subset of SGML technology that has a goal … Read more

Exit mobile version