[ci skip] Fix #3515
diff --git a/user_guide_src/source/libraries/table.rst b/user_guide_src/source/libraries/table.rst
index bb001e8..91ae1ae 100644
--- a/user_guide_src/source/libraries/table.rst
+++ b/user_guide_src/source/libraries/table.rst
@@ -143,7 +143,7 @@
 Class Reference
 ***************
 
-.. class:: CI_Table
+.. php:class:: CI_Table
 
 	.. attribute:: $function = NULL
 
@@ -162,7 +162,7 @@
 
 			<td>Fred</td><td>&lt;strong&gt;Blue&lt;/strong&gt;</td><td>Small</td>
 
-	.. method:: generate([$table_data = NULL])
+	.. php:method:: generate([$table_data = NULL])
 
 		:param	mixed	$table_data: Data to populate the table rows with
 		:returns:	HTML table
@@ -170,7 +170,7 @@
 
 		Returns a string containing the generated table. Accepts an optional parameter which can be an array or a database result object.
 
-	.. method:: set_caption($caption)
+	.. php:method:: set_caption($caption)
 
 		:param	string	$caption: Table caption
 		:returns:	CI_Table instance (method chaining)
@@ -181,7 +181,7 @@
 
 			$this->table->set_caption('Colors');
 
-	.. method:: set_heading([$args = array()[, ...]])
+	.. php:method:: set_heading([$args = array()[, ...]])
 
 		:param	mixed	$args: An array or multiple strings containing the table column titles
 		:returns:	CI_Table instance (method chaining)
@@ -193,7 +193,7 @@
 
 			$this->table->set_heading(array('Name', 'Color', 'Size'));
 
-	.. method:: add_row([$args = array()[, ...]])
+	.. php:method:: add_row([$args = array()[, ...]])
 
 		:param	mixed	$args: An array or multiple strings containing the row values
 		:returns:	CI_Table instance (method chaining)
@@ -214,7 +214,7 @@
 			// generates
 			// <td class='highlight' colspan='2'>Blue</td><td>Red</td><td>Green</td>
 
-	.. method:: make_columns([$array = array()[, $col_limit = 0]])
+	.. php:method:: make_columns([$array = array()[, $col_limit = 0]])
 
 		:param	array	$array: An array containing multiple rows' data
 		:param	int	$col_limit: Count of columns in the table
@@ -244,7 +244,7 @@
 			</table>
 
 
-	.. method:: set_template($template)
+	.. php:method:: set_template($template)
 
 		:param	array	$template: An associative array containing template values
 		:returns:	TRUE on success, FALSE on failure
@@ -259,7 +259,7 @@
 		
 			$this->table->set_template($template);
 
-	.. method:: set_empty($value)
+	.. php:method:: set_empty($value)
 
 		:param	mixed	$value: Value to put in empty cells
 		:returns:	CI_Table instance (method chaining)
@@ -270,7 +270,7 @@
 
 			$this->table->set_empty("&nbsp;");
 
-	.. method:: clear()
+	.. php:method:: clear()
 
 		:returns:	CI_Table instance (method chaining)
 		:rtype:	CI_Table