This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<meta name="color:Background" content="#ffffff"/> | |
<meta name="color:Title" content="#000000"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.arabic | |
{ | |
direction:rtl; | |
text-align:right; | |
font-size:1.1em;/*arabic fonts tend to render smaller*/ | |
font-family: 'Amiri', serif; | |
} | |
.arabic h3 | |
{ | |
font-size: 26px |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.arabic | |
{ | |
direction:rtl; | |
text-align:right; | |
font-size:1.1em; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(http://fonts.googleapis.com/earlyaccess/amiri.css); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.arabic | |
{ | |
direction:rtl; | |
text-align:right; | |
font-size:1.1em; | |
font-family: 'Amiri', serif; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msxsl myXsd.xsd xs3p.xsl -o myXsdDocumentation.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
powershell "& 'C:\XsdToBeConverted\ConvertAllXsdToHtml.ps1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$scriptpath = $MyInvocation.MyCommand.Path | |
$executionFolder = Split-Path $scriptpath | |
$executionFolder = $executionFolder + "\" | |
$stylesheet = $executionFolder + "xs3p.xsl" | |
$Exe = $executionFolder + "msxsl.exe" | |
#Function to Convert XSD files to HTML | |
function Run-MsXsl ($XsdFile) | |
{ |
OlderNewer