2018-07-26 14:43:38 +02:00
|
|
|
iast(1)
|
|
|
|
=======
|
|
|
|
:manmanual: sanskrit-iast
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
iast - a helper for Sanskrit transliteration
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2020-01-22 19:01:18 +01:00
|
|
|
*iast* [*-h*] [*-v*] [*-f* 'FILE']... [*-r* | *-c* | *-e*] ['TEXT ARGUMENTS']...
|
2018-07-26 14:43:38 +02:00
|
|
|
|
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
*iast* is a tool for the lossless transliteration of Sanskrit terms written in
|
|
|
|
Devanagari into Latin using the IAST scheme (International Alphabet of Sanskrit
|
|
|
|
Transliteration).
|
|
|
|
|
|
|
|
The program allows to perform transliteration either on all non-option
|
|
|
|
arguments or on whole files specified by the *-f* option. By default, it
|
|
|
|
performs transliteration from Devanagari to a corresponding romanised version,
|
|
|
|
but using the *-r* switch, reverse transliteration can be performed, converting
|
|
|
|
romanised texts back into Devanagari.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
*-f* 'FILE'::
|
|
|
|
Input file for processing.
|
2020-01-13 19:59:32 +01:00
|
|
|
|
2020-01-02 16:32:03 +01:00
|
|
|
*-r*::
|
2020-01-22 19:01:18 +01:00
|
|
|
Use reverse transliteration (from Latin to Devanagari).
|
2020-01-02 16:32:03 +01:00
|
|
|
|
2018-07-26 14:43:38 +02:00
|
|
|
*-c*::
|
2020-01-22 19:01:18 +01:00
|
|
|
Transcript a Devanagari text into Czech.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
|
|
|
*-e*::
|
2020-01-22 19:01:18 +01:00
|
|
|
Convert a symbolic ASCII(7) text to IAST representation.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
*-h*::
|
|
|
|
Show usage information and exit.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
*-v*::
|
|
|
|
Show version number and exit.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
ENCODING
|
|
|
|
--------
|
2020-01-22 19:01:18 +01:00
|
|
|
When the flag '-e' is set on, the program converts purely ASCII-encoded strings
|
2018-07-26 14:43:38 +02:00
|
|
|
into the special characters of the IAST alphabet. For example, it converts
|
|
|
|
"sam.skr.tam" to "saṃskṛtam" or "s,a-stram" to "śāstram".
|
|
|
|
|
|
|
|
The encoding scheme is based on the following principle: characters "-", ".",
|
|
|
|
"," and "~" are considered to be modifiers that modify a letter that stands
|
|
|
|
before the modifier. For example, if the string to be encoded contains "a-",
|
2020-01-22 19:01:18 +01:00
|
|
|
it will be encoded as "ā" and the sequence "n~" as "ñ" and so on. The only
|
|
|
|
exception from the rule is the letter "n" because it can be encoded both with
|
|
|
|
an over-dot (ṅ) and under-dot (ṇ). For the over-dot variant, the conversion
|
|
|
|
sequence is "n^.".
|
2018-07-26 14:43:38 +02:00
|
|
|
|
|
|
|
Alternatively, the Czech characters "á", "í", "ú", "š" and "ň" can be used as
|
|
|
|
shortcuts to encode the letters "ā", "ī", "ū", "ś" and "ñ" respectively.
|
|
|
|
|
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
AUTHOR
|
|
|
|
------
|
2020-01-13 19:59:32 +01:00
|
|
|
Copyright (c) 2018, 2020 Vlasta Vesely <vlastavesely@protonmail.ch>
|
2018-07-26 14:43:38 +02:00
|
|
|
|
|
|
|
|
2020-01-22 19:01:18 +01:00
|
|
|
REPORTING BUGS
|
|
|
|
--------------
|
|
|
|
If you encounter a bug, you should make sure that you are using the latest
|
|
|
|
version of the software. If you do and the bug is still present, you can
|
|
|
|
report it using either the issues tracker on GitLab or GitHub.
|
|
|
|
|
|
|
|
GitLab: <https://gitlab.com/vlastavesely/sanskrit-iast/issues> +
|
|
|
|
GitHub: <https://github.com/vlastavesely/sanskrit-iast/issues>
|
|
|
|
|
|
|
|
|
|
|
|
LICENSE AND WARRANTY
|
|
|
|
--------------------
|
2020-01-13 19:59:32 +01:00
|
|
|
This software is released under the terms of the GPL license version 2 as
|
2020-01-22 19:01:18 +01:00
|
|
|
published by the Free Software Foundation.
|
|
|
|
See <https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt> for more details.
|
2018-07-26 14:43:38 +02:00
|
|
|
|
2020-01-02 16:32:03 +01:00
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|