Skip to content

Instantly share code, notes, and snippets.

@gahr
Created December 7, 2020 15:08
Show Gist options
  • Select an option

  • Save gahr/f37579f78ccc0003b228e0cff41985ea to your computer and use it in GitHub Desktop.

Select an option

Save gahr/f37579f78ccc0003b228e0cff41985ea to your computer and use it in GitHub Desktop.
% cat parent.xml
<?xml version="1.0" standalone="no"?>
<root xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include parse="text" href="text.txt"/>
</root>
% cat text.txt
Here's some free text
% xmllint --xinclude parent.xml
<?xml version="1.0" standalone="no"?>
<root xmlns:xi="http://www.w3.org/2001/XInclude">
Here's some free text
</root>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment