Files
harbour-core/harbour/website/samples/parseini.ini.html
Viktor Szakats bc49ced49b 2012-11-18 12:55 UTC+0100 Viktor Szakats (harbour syenar.net)
* website/samples/*.*.html
    % pointed compatibility .js link to the project's cloud server
2012-11-18 11:57:56 +00:00

56 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/xregexp/2.0.0/xregexp-min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/xregexp/2.0.0/backcompat.js"></script>
<script type="text/javascript" src="/js/shCore.js"></script>
<script type="text/javascript" src="/js/shBrushHarbour.js"></script>
<link href="/css/shCore.css" rel="stylesheet" type="text/css" />
<link href="/css/shThemeDefault.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">SyntaxHighlighter.all()</script>
</head>
<body>
<script type="syntaxhighlighter" class="brush: harbour"><![CDATA[
; Demo INI file
;
; Copyright 2003 Giancarlo Niccolai (gian niccolai ws)
; (showing another style of comment here )
# This is the MAIN section
Procedure = Demo ini file
Name = Parseini.ini
#including a subfile
include parseins.ini
[Files] #Declaring files section
Path=/home/pub
Filename: foobar.pdf # variable declared with ':'
Long= A Data ||
Spreading ||
On varius lines ||
here.
[Printers]
LPT1 = \\HEAD\Lexmark
#including a subfile
include parseins.ini
#invalid line
An invalid line
#
# End!
#
]]></script>
</body>
</html>