Navigation Menu

Skip to content

Commit

Permalink
doc htm_untag: column is not required
Browse files Browse the repository at this point in the history
html_untag() accepts HTML as string not column. We can not only pass
column value but also string literal.
  • Loading branch information
kou committed Jun 28, 2013
1 parent 4a14f27 commit a8adae6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions doc/source/reference/functions/html_untag.txt
Expand Up @@ -18,11 +18,11 @@ Summary
Syntax
------

``html_untag`` requires only one argument. It is ``column``.
``html_untag`` requires only one argument. It is ``html``.

::

html_untag(column)
html_untag(html)


Usage
Expand Down Expand Up @@ -61,15 +61,14 @@ Note that you must specify ``--command_version 2`` to use ``html_untag`` functio
Parameters
----------

There is one required parameter, ``column``.
There is one required parameter, ``html``.

``column``
^^^^^^^^^^
``html``
^^^^^^^^

It specifies a column of the table.
It specifies HTML text to be untagged.

Return value
------------

``html_untag`` returns plain text which is stripped HTML tags from content of column.

``html_untag`` returns plain text which is stripped HTML tags from HTML text.

0 comments on commit a8adae6

Please sign in to comment.