diff --git a/libs/core/core.assign_smarty_interface.php b/libs/core/core.assign_smarty_interface.php
index be46ed27..b2b479ac 100644
--- a/libs/core/core.assign_smarty_interface.php
+++ b/libs/core/core.assign_smarty_interface.php
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty assign_smarty_interface core plugin
*
* Type: core
diff --git a/libs/core/core.display_debug_console.php b/libs/core/core.display_debug_console.php
index 1c3a0d8c..9fa4a0f6 100644
--- a/libs/core/core.display_debug_console.php
+++ b/libs/core/core.display_debug_console.php
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty debug_console function plugin
*
* Type: core
diff --git a/libs/plugins/function.assign.php b/libs/plugins/function.assign.php
index 3823791d..ad23f043 100644
--- a/libs/plugins/function.assign.php
+++ b/libs/plugins/function.assign.php
@@ -5,7 +5,7 @@
* @subpackage plugins
*/
-/*
+/**
* Smarty {assign} function plugin
*
* Type: function
diff --git a/libs/plugins/function.html_options.php b/libs/plugins/function.html_options.php
index 9c7a5678..1b10653c 100644
--- a/libs/plugins/function.html_options.php
+++ b/libs/plugins/function.html_options.php
@@ -6,7 +6,7 @@
*/
-/*
+/**
* Smarty {html_options} function plugin
*
* Type: function
diff --git a/libs/plugins/function.html_table.php b/libs/plugins/function.html_table.php
index fe80565e..33be01aa 100644
--- a/libs/plugins/function.html_table.php
+++ b/libs/plugins/function.html_table.php
@@ -1,46 +1,46 @@
-* Name: html_table
-* Date: Feb 17, 2003
-* Purpose: make an html table from an array of data
-* Input:
-* - loop = array to loop through
-* - cols = number of columns
-* - rows = number of rows
-* - table_attr = table attributes
-* - tr_attr = table row attributes (arrays are cycled)
-* - td_attr = table cell attributes (arrays are cycled)
-* - trailpad = value to pad trailing cells with
-* - vdir = vertical direction (default: "down", means top-to-bottom)
-* - hdir = horizontal direction (default: "right", means left-to-right)
-* - inner = inner loop (default "cols": print $loop line by line,
-* $loop will be printed column by column otherwise)
-*
-*
-* Examples:
-*
-* {table loop=$data} -* {table loop=$data cols=4 tr_attr='"bgcolor=red"'} -* {table loop=$data cols=4 tr_attr=$colors} -*-* @author Monte Ohrt
+ * {table loop=$data} + * {table loop=$data cols=4 tr_attr='"bgcolor=red"'} + * {table loop=$data cols=4 tr_attr=$colors} + *+ * @author Monte Ohrt