<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Usage</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>Recent changes to Usage</description><atom:link href="https://sourceforge.net/p/jquerymathview/wiki/Usage/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 10 Dec 2012 19:38:30 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jquerymathview/wiki/Usage/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v19
+++ v20
@@ -44,3 +44,6 @@
   
         $('.yourClassName').addMathEditor();
         ~~~~~~
+
+###LATEX and PG###
+Mathjax works with LAtex, but Jquery-mathview can convert PG to Latex so that Mathjax can render it. PG is a math langage included in **WeBWorK**. Although, some of the code is present, there's a missing file so the PG won't work unless you're working on **WeBWorK**. Anyways, stick with LATEX.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:38:30 -0000</pubDate><guid>https://sourceforge.net8f1055f053fc72824608df0a9fad3cf07699e9a9</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v18
+++ v19
@@ -23,7 +23,7 @@
     &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
 	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;	
 	&lt;script type="text/javascript"&gt;
-	   $(
+	    $(
 		function() 
 		{
 			 //Enter here your code to select your textbox. See number 3  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:26:23 -0000</pubDate><guid>https://sourceforge.netfc4d15da62aa340f12c04480b44c5e839d4b0bbf</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v17
+++ v18
@@ -23,7 +23,7 @@
     &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
 	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;	
 	&lt;script type="text/javascript"&gt;
-	$(
+	   $(
 		function() 
 		{
 			 //Enter here your code to select your textbox. See number 3  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:26:15 -0000</pubDate><guid>https://sourceforge.netd8227b60ff6720b9df1371687a68432443548ca6</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v16
+++ v17
@@ -23,7 +23,7 @@
     &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
 	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;	
 	&lt;script type="text/javascript"&gt;
-	        $(
+	$(
 		function() 
 		{
 			 //Enter here your code to select your textbox. See number 3  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:26:00 -0000</pubDate><guid>https://sourceforge.net9d1ea5e9d1a3b6f54959c999b2284c077cf8c8e6</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v15
+++ v16
@@ -21,13 +21,13 @@
 ~~~~~~
 
     &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
-
-	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;
-	
+	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;	
 	&lt;script type="text/javascript"&gt;
-
-           //Enter here your code to select your textbox. See number 3    
-            
+	        $(
+		function() 
+		{
+			 //Enter here your code to select your textbox. See number 3  
+		});         
 	&lt;/script&gt;
 
 ~~~~~~  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:25:37 -0000</pubDate><guid>https://sourceforge.netf945f45a33a7fd75e122930e73796f289b58e7c8</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v14
+++ v15
@@ -34,12 +34,13 @@
    
 + Code to select your textbox:
     * You have to get all the textbox you want to decorate with the tool. Do it the way you like.
-    * Once you know how you'll pick these textbox, you just have to call the function [addMathEditor()] this way:
+    * Once you know how you'll pick these textbox, you just have to call the function *addMathEditor()* this way:
 
-        :::javascript
-        # $('#yourIDName').addMathEditor();
+        ~~~~~~
+        $('#yourIDName').addMathEditor();
 
             or
         
-        :::javascript
-        # $('.yourClassName').addMathEditor();
+  
+        $('.yourClassName').addMathEditor();
+        ~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:04:58 -0000</pubDate><guid>https://sourceforge.netc665683282faefbdd324954cdf45b6b3083ac356</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v13
+++ v14
@@ -35,9 +35,11 @@
 + Code to select your textbox:
     * You have to get all the textbox you want to decorate with the tool. Do it the way you like.
     * Once you know how you'll pick these textbox, you just have to call the function [addMathEditor()] this way:
-        
+
+        :::javascript
         # $('#yourIDName').addMathEditor();
 
             or
         
+        :::javascript
         # $('.yourClassName').addMathEditor();
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:04:02 -0000</pubDate><guid>https://sourceforge.net4ceab950a098319fef009ff832044abfa80fca21</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v12
+++ v13
@@ -33,4 +33,11 @@
 ~~~~~~  
    
 + Code to select your textbox:
-    *
+    * You have to get all the textbox you want to decorate with the tool. Do it the way you like.
+    * Once you know how you'll pick these textbox, you just have to call the function [addMathEditor()] this way:
+        
+        # $('#yourIDName').addMathEditor();
+
+            or
+        
+        # $('.yourClassName').addMathEditor();
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 19:02:20 -0000</pubDate><guid>https://sourceforge.neteb9989c8d44a5059f2d23fb5c7da6b6fa6bb30b5</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v11
+++ v12
@@ -20,7 +20,7 @@
 
 ~~~~~~
 
- &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
+    &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
 
 	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;
 	
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 18:54:54 -0000</pubDate><guid>https://sourceforge.net779e693d120cee8e753302a565cccc476f79df03</guid></item><item><title>WikiPage Usage modified by Johnny Tremblay</title><link>https://sourceforge.net/p/jquerymathview/wiki/Usage/</link><description>&lt;pre&gt;--- v10
+++ v11
@@ -20,7 +20,7 @@
 
 ~~~~~~
 
-&lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
+ &lt;script type="text/javascript" src="operations.js"&gt;&lt;/script&gt;
 
 	&lt;script type="text/javascript" src="jquery-mathview-1.0.0.js?auto=4"&gt;&lt;/script&gt;
 	
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Johnny Tremblay</dc:creator><pubDate>Mon, 10 Dec 2012 18:54:39 -0000</pubDate><guid>https://sourceforge.net84922913639a6dfe63b182c9ed716e90278c6404</guid></item></channel></rss>