<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/ivaanui/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 31 Jan 2019 11:03:30 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ivaanui/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -9,7 +9,7 @@
 v1.0.1
 - OnOffSwitch Control
 - StatusLED Control
-v1.0.2 (&amp;gt; v1.0.2 requires Microsoft.Ink.dll)
+v1.0.2 *(Requires Microsoft.Ink.dll)*
 - ScribblePanel Control

 Usage in xaml:
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 31 Jan 2019 11:03:30 -0000</pubDate><guid>https://sourceforge.net00b4aa562ccd134af29971624720c29bc880d15b</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -9,6 +9,8 @@
 v1.0.1
 - OnOffSwitch Control
 - StatusLED Control
+v1.0.2 (&amp;gt; v1.0.2 requires Microsoft.Ink.dll)
+- ScribblePanel Control

 Usage in xaml:

@@ -95,3 +97,20 @@
 ~~~
 - Status property can have 5 possible values (all shown in example above)
 - Clicked ICommand can be used to get notified if you click on the StatusLED control (if you want to change states etc)
+
+## ScribblePanel Control
+Add the following Namespace:
+
+xmlns:ctrl="clr-namespace:IvaanUI.Controls.Panels;assembly=IvaanUI.Controls"
+
+
+Then add the control:
+~~~
+&amp;lt;ctrl:scribblepanel width="400" name="Pen" height="180"&amp;gt;
+~~~
+
+To use the Predicted text bind to the Text property of ScribblePanel like:
+~~~
+&amp;lt;textblock foreground="DarkOrange" text="{Binding Text, ElementName=Pen}" +="" fontsize="32" horizontalalignment="Center" margin="0 30" textalignment="Center"&amp;gt;
+~~~
&amp;lt;/textblock&amp;gt;&amp;lt;/ctrl:scribblepanel&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 31 Jan 2019 11:02:55 -0000</pubDate><guid>https://sourceforge.net0cdbcc3c1309d793c1a8c528a872bbc719a38273</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -1,9 +1,11 @@
 This is a Free to Use WPF controls library. New controls will be added to this frequently.
 Requires .Net v4.6.2 (min) to work.

+Newer version will always be backward compatible.
+
 Contents:
 v1.0.0
-- FileBrowser Control (Same as v1.0.0 - No Changes)
+- FileBrowser Control
 v1.0.1
 - OnOffSwitch Control
 - StatusLED Control
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 24 Jan 2019 17:22:59 -0000</pubDate><guid>https://sourceforge.netc6b6493298833a69f47d96491ae8ab897603c9e9</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -18,6 +18,7 @@

 Then add the control:

+~~~
 &amp;lt;ctrl:filebrowser name="FileDialog" filetypefilter="All Files (*.*)|Excel 97-2003 (*.xls)| Excel (*.xlsx) |Text File (*.txt)|Xml File (*.xml)|Zip Archive (*.zip)"&amp;gt;
 &amp;lt;ctrl:filebrowser.customquicklinkitems&amp;gt;
@@ -25,6 +26,7 @@
 &amp;lt;ctrlmdl:quicklink path="C:\Folder123\MyCode\" iconuri="C:\JUNK\Code.png" name="Source Code"&amp;gt;
 &amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrl:filebrowser.customquicklinkitems&amp;gt;
 &amp;lt;/ctrl:filebrowser&amp;gt;
+~~~

 - FileTypeFilter property is a pipe (|) separated file extension filtering string. As shown in example above. You can add as many formats as you want.
 - CustomQuickLinkItems is a List&amp;lt;quicklink&amp;gt;which allows you to add Custom Quick Links (or one click shortcuts) on File Browser Dialog.
@@ -34,12 +36,12 @@
 In code behind:

 Within main constructor (after InitializeComponent())
-
+~~~
         FileDialog.OpenCommand = FileOpened;
         FileDialog.CancelCommand = BrowserClosed;
-
+~~~
 Below are example handler methods for File Opened or Cancel clicked scenario:
-
+~~~
         private void FileOpened(string path)
         {
             MessageBox.Show($"Opening File: {path}");
@@ -49,7 +51,7 @@
         {
             MessageBox.Show("File Browser Closed");
         }   
-
+~~~

 ## OnOffSwitch Control
 Add the following Namespace:
@@ -57,11 +59,11 @@
 xmlns:ctrl="clr-namespace:IvaanUI.Controls.Buttons;assembly=IvaanUI.Controls"

 Then add the control:
-
+~~~
 &amp;lt;ctrl:onoffswitch onstatetext="On" width="80" offstatetext="Off" height="30"&amp;gt;
 &amp;lt;ctrl:onoffswitch onstatetext="Allow" width="100" offstatetext="Block" margin="0 100 0 0" height="30"&amp;gt;
 &amp;lt;ctrl:onoffswitch onstatetext="" width="80" offstatetext="" margin="0 200 0 0" height="30"&amp;gt;
-
+~~~
 - OnStateText appears on left side of slider
 - OffStateText appears on right side of slider
 - Set suitable Height &amp;amp; Width for the control (Margin in above example is demo purpose only)
@@ -77,7 +79,7 @@
 xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"

 Then add the control:
-
+~~~
 &amp;lt;ctrl:statusled status="None" width="40" clicked="{Binding Something}" tooltip="Gray" height="40"&amp;gt;
 &amp;lt;ctrl:statusled status="Warning" @@="" tooltip="Blue" height="40" width="40" -88,6="" margin="120 0 0 0" +90,6=""&amp;gt;
 &amp;lt;ctrl:statusled status="Danger" width="40" margin="480 0 0 0" tooltip="Red" height="40"&amp;gt;
-
+~~~
 - Status property can have 5 possible values (all shown in example above)
 - Clicked ICommand can be used to get notified if you click on the StatusLED control (if you want to change states etc)
&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/quicklink&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 24 Jan 2019 17:21:33 -0000</pubDate><guid>https://sourceforge.netb57ac5c06842a9f4a6c50b6547847eab14be7805</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -12,12 +12,12 @@

 ## FileBrowser Control
 Add the following 2 Namespaces:
-```xaml
+
         xmlns:ctrl="clr-namespace:IvaanUI.Controls.FileSystem;assembly=IvaanUI.Controls"
         xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
-```
+
 Then add the control:
-```xml
+
 &amp;lt;ctrl:filebrowser name="FileDialog" filetypefilter="All Files (*.*)|Excel 97-2003 (*.xls)| Excel (*.xlsx) |Text File (*.txt)|Xml File (*.xml)|Zip Archive (*.zip)"&amp;gt;
 &amp;lt;ctrl:filebrowser.customquicklinkitems&amp;gt;
@@ -25,7 +25,7 @@
 &amp;lt;ctrlmdl:quicklink path="C:\Folder123\MyCode\" iconuri="C:\JUNK\Code.png" name="Source Code"&amp;gt;
 &amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrl:filebrowser.customquicklinkitems&amp;gt;
 &amp;lt;/ctrl:filebrowser&amp;gt;
-```
+
 - FileTypeFilter property is a pipe (|) separated file extension filtering string. As shown in example above. You can add as many formats as you want.
 - CustomQuickLinkItems is a List&amp;lt;quicklink&amp;gt;which allows you to add Custom Quick Links (or one click shortcuts) on File Browser Dialog.
 - See Documentation/Screenshots at: https://sourceforge.net/projects/ivaanui/
@@ -34,12 +34,12 @@
 In code behind:

 Within main constructor (after InitializeComponent())
-```C#
+
         FileDialog.OpenCommand = FileOpened;
         FileDialog.CancelCommand = BrowserClosed;
-```
+
 Below are example handler methods for File Opened or Cancel clicked scenario:
-```C#
+
         private void FileOpened(string path)
         {
             MessageBox.Show($"Opening File: {path}");
@@ -49,19 +49,19 @@
         {
             MessageBox.Show("File Browser Closed");
         }   
-```
+

 ## OnOffSwitch Control
 Add the following Namespace:
-```xaml
+
 xmlns:ctrl="clr-namespace:IvaanUI.Controls.Buttons;assembly=IvaanUI.Controls"
-```
+
 Then add the control:
-```xml
+
 &amp;lt;ctrl:onoffswitch onstatetext="On" width="80" offstatetext="Off" height="30"&amp;gt;
 &amp;lt;ctrl:onoffswitch onstatetext="Allow" width="100" offstatetext="Block" margin="0 100 0 0" height="30"&amp;gt;
 &amp;lt;ctrl:onoffswitch onstatetext="" width="80" offstatetext="" margin="0 200 0 0" height="30"&amp;gt;
-```
+
 - OnStateText appears on left side of slider
 - OffStateText appears on right side of slider
 - Set suitable Height &amp;amp; Width for the control (Margin in above example is demo purpose only)
@@ -72,12 +72,12 @@

 ## StatusLED Control
 Add the following 2 Namespaces:
-```xaml
+
 xmlns:ctrl="clr-namespace:IvaanUI.Controls.Buttons;assembly=IvaanUI.Controls"
 xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
-```
+
 Then add the control:
-```xml
+
 &amp;lt;ctrl:statusled status="None" width="40" clicked="{Binding Something}" tooltip="Gray" height="40"&amp;gt;
 &amp;lt;ctrl:statusled status="Warning" @@="" +88,6="" tooltip="Blue" height="40" width="40" -88,6="" margin="120 0 0 0"&amp;gt;
 &amp;lt;ctrl:statusled status="Danger" width="40" margin="480 0 0 0" tooltip="Red" height="40"&amp;gt;
-```
+
 - Status property can have 5 possible values (all shown in example above)
 - Clicked ICommand can be used to get notified if you click on the StatusLED control (if you want to change states etc)
&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/quicklink&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 24 Jan 2019 17:20:34 -0000</pubDate><guid>https://sourceforge.net41dcbda552260ed507a3cf770de8805e2785735b</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -3,43 +3,91 @@

 Contents:
 v1.0.0
+- FileBrowser Control (Same as v1.0.0 - No Changes)
+v1.0.1
+- OnOffSwitch Control
+- StatusLED Control

-FileBrowser Control
 Usage in xaml:

+## FileBrowser Control
 Add the following 2 Namespaces:
+```xaml
+        xmlns:ctrl="clr-namespace:IvaanUI.Controls.FileSystem;assembly=IvaanUI.Controls"
+        xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
+```
+Then add the control:
+```xml
+&amp;lt;ctrl:filebrowser +filetypefilter="All Files (*.*)|Excel 97-2003 (*.xls)| Excel (*.xlsx) |Text File (*.txt)|Xml File (*.xml)|Zip Archive (*.zip)" name="FileDialog"&amp;gt;
+&amp;lt;ctrl:filebrowser.customquicklinkitems&amp;gt;
+&amp;lt;ctrlmdl:quicklink path="C:\Junk" iconuri="C:\JUNK\Junk.png" name="Junk"&amp;gt;
+&amp;lt;ctrlmdl:quicklink path="C:\Folder123\MyCode\" iconuri="C:\JUNK\Code.png" name="Source Code"&amp;gt;
+&amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrl:filebrowser.customquicklinkitems&amp;gt;
+&amp;lt;/ctrl:filebrowser&amp;gt;
+```
+- FileTypeFilter property is a pipe (|) separated file extension filtering string. As shown in example above. You can add as many formats as you want.
+- CustomQuickLinkItems is a List&amp;lt;quicklink&amp;gt;which allows you to add Custom Quick Links (or one click shortcuts) on File Browser Dialog.
+- See Documentation/Screenshots at: https://sourceforge.net/projects/ivaanui/

-    xmlns:ctrl="clr-namespace:IvaanUI.Controls.FileSystem;assembly=IvaanUI.Controls"
-
-    xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
-Then add the control:
-
-    &amp;lt;ctrl:filebrowser -="" name="FileDialog" filetypefilter="All Files (*.*)|Excel 97-2003 (*.xls)| Excel (*.xlsx) |Text File (*.txt)|Xml File (*.xml)|Zip Archive (*.zip)"&amp;gt;
-            &amp;lt;ctrl:filebrowser.customquicklinkitems&amp;gt;
-                &amp;lt;ctrlmdl:quicklink path="C:\Junk" iconuri="C:\JUNK\Junk.png" name="Junk"&amp;gt;
-                &amp;lt;ctrlmdl:quicklink path="C:\Folder123\MyCode\" iconuri="C:\JUNK\Code.png" name="Source Code"&amp;gt;
-            &amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrl:filebrowser.customquicklinkitems&amp;gt;
-        &amp;lt;/ctrl:filebrowser&amp;gt;
-*FileTypeFilter property is a pipe (|) separated file extension filtering string. As shown in example above. You can add as many formats as you want.
-*CustomQuickLinkItems is a List&amp;lt;quicklink&amp;gt;which allows you to add Custom Quick Links (or one click shortcuts) on File Browser Dialog.
-See Documentation/Screenshots at: https://sourceforge.net/projects/ivaanui/

 In code behind:

-Withing main constructor (after InitializeComponent())
+Within main constructor (after InitializeComponent())
+```C#
+        FileDialog.OpenCommand = FileOpened;
+        FileDialog.CancelCommand = BrowserClosed;
+```
+Below are example handler methods for File Opened or Cancel clicked scenario:
+```C#
+        private void FileOpened(string path)
+        {
+            MessageBox.Show($"Opening File: {path}");
+        }

-    FileDialog.OpenCommand = FileOpened;
+        private void BrowserClosed()
+        {
+            MessageBox.Show("File Browser Closed");
+        }   
+```

-    FileDialog.CancelCommand = BrowserClosed;
-Below are example handler methods for File Opened or Cancel clicked scenario.:
+## OnOffSwitch Control
+Add the following Namespace:
+```xaml
+xmlns:ctrl="clr-namespace:IvaanUI.Controls.Buttons;assembly=IvaanUI.Controls"
+```
+Then add the control:
+```xml
+&amp;lt;ctrl:onoffswitch onstatetext="On" width="80" offstatetext="Off" height="30"&amp;gt;
+&amp;lt;ctrl:onoffswitch onstatetext="Allow" width="100" offstatetext="Block" margin="0 100 0 0" height="30"&amp;gt;
+&amp;lt;ctrl:onoffswitch onstatetext="" width="80" offstatetext="" margin="0 200 0 0" height="30"&amp;gt;
+```
+- OnStateText appears on left side of slider
+- OffStateText appears on right side of slider
+- Set suitable Height &amp;amp; Width for the control (Margin in above example is demo purpose only)
+- Can also leave the On/Off texts blank
+- Bind StateChanged ICommand on the control to get notified about state changes (handler will get a boolean parameter specifying the current state)
+-- true means Switch is ON
+-- false means Switch is OFF

-    private void FileOpened(string path)
-    {
-        MessageBox.Show($"Opening File: {path}");
-    }
-
-    private void BrowserClosed()
-    {
-        MessageBox.Show("File Browser Closed");
-    }   
+## StatusLED Control
+Add the following 2 Namespaces:
+```xaml
+xmlns:ctrl="clr-namespace:IvaanUI.Controls.Buttons;assembly=IvaanUI.Controls"
+xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
+```
+Then add the control:
+```xml
+&amp;lt;ctrl:statusled status="None" clicked="{Binding Something}" +="" tooltip="Gray" height="40" width="40"&amp;gt;
+&amp;lt;ctrl:statusled status="Info" +="" tooltip="Blue" height="40" width="40" margin="120 0 0 0"&amp;gt;
+&amp;lt;ctrl:statusled status="Success" +="" tooltip="Green" height="40" width="40" margin="240 0 0 0"&amp;gt;
+&amp;lt;ctrl:statusled status="Warning" +="" tooltip="Yellow" height="40" width="40" margin="360 0 0 0"&amp;gt;
+&amp;lt;ctrl:statusled status="Danger" +="" tooltip="Red" height="40" width="40" margin="480 0 0 0"&amp;gt;
+```
+- Status property can have 5 possible values (all shown in example above)
+- Clicked ICommand can be used to get notified if you click on the StatusLED control (if you want to change states etc)
&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:statusled&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/ctrl:onoffswitch&amp;gt;&amp;lt;/quicklink&amp;gt;&amp;lt;/quicklink&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 24 Jan 2019 17:19:31 -0000</pubDate><guid>https://sourceforge.netf4b67bd413f2faa0185eefaba5a507cead6a4ba7</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,45 @@
-Welcome to your wiki!
+This is a Free to Use WPF controls library. New controls will be added to this frequently.
+Requires .Net v4.6.2 (min) to work.

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+Contents:
+v1.0.0

-The wiki uses [Markdown](/p/ivaanui/wiki/markdown_syntax/) syntax.
+FileBrowser Control
+Usage in xaml:

-[[members limit=20]]
-[[download_button]]
+Add the following 2 Namespaces:
+
+    xmlns:ctrl="clr-namespace:IvaanUI.Controls.FileSystem;assembly=IvaanUI.Controls"
+
+    xmlns:ctrlMdl="clr-namespace:IvaanUI.Models.UI;assembly=IvaanUI.Models"
+Then add the control:
+
+    &amp;lt;ctrl:filebrowser +="" name="FileDialog" filetypefilter="All Files (*.*)|Excel 97-2003 (*.xls)| Excel (*.xlsx) |Text File (*.txt)|Xml File (*.xml)|Zip Archive (*.zip)"&amp;gt;
+            &amp;lt;ctrl:filebrowser.customquicklinkitems&amp;gt;
+                &amp;lt;ctrlmdl:quicklink path="C:\Junk" iconuri="C:\JUNK\Junk.png" name="Junk"&amp;gt;
+                &amp;lt;ctrlmdl:quicklink path="C:\Folder123\MyCode\" iconuri="C:\JUNK\Code.png" name="Source Code"&amp;gt;
+            &amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrlmdl:quicklink&amp;gt;&amp;lt;/ctrl:filebrowser.customquicklinkitems&amp;gt;
+        &amp;lt;/ctrl:filebrowser&amp;gt;
+*FileTypeFilter property is a pipe (|) separated file extension filtering string. As shown in example above. You can add as many formats as you want.
+*CustomQuickLinkItems is a List&amp;lt;quicklink&amp;gt;which allows you to add Custom Quick Links (or one click shortcuts) on File Browser Dialog.
+See Documentation/Screenshots at: https://sourceforge.net/projects/ivaanui/
+
+In code behind:
+
+Withing main constructor (after InitializeComponent())
+
+    FileDialog.OpenCommand = FileOpened;
+
+    FileDialog.CancelCommand = BrowserClosed;
+Below are example handler methods for File Opened or Cancel clicked scenario.:
+
+    private void FileOpened(string path)
+    {
+        MessageBox.Show($"Opening File: {path}");
+    }
+
+    private void BrowserClosed()
+    {
+        MessageBox.Show("File Browser Closed");
+    }   
&amp;lt;/quicklink&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 17 Jan 2019 19:06:45 -0000</pubDate><guid>https://sourceforge.neta366fe7f5e4cd2e97da31895f2983140ac3e9527</guid></item><item><title>Home modified by Prateek Shrivastava</title><link>https://sourceforge.net/p/ivaanui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/ivaanui/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/prateekcool007/"&gt;Prateek Shrivastava&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-5c40ca80cd84857183a98dbf" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prateek Shrivastava</dc:creator><pubDate>Thu, 17 Jan 2019 18:33:36 -0000</pubDate><guid>https://sourceforge.netb27047cd9bba2b0338345a54487b92ba2f9f5146</guid></item></channel></rss>