Text Management scripts - Top 4 Download

Text Management script downloads

dompdf

dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1 compliant HTML layout and rendering engine written in PHP. It is a style-driven renderer: it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. It also supports most presentational ...

sPHPell

sPHPell is a FREE PHP spell checker that takes the text in a text field via javascript and spell checks it in its own window. The user can perform the usual spell checking operations (ignore, ignore all, change, change all, etc). Simple to include in any PHP page. ...

Php Pdf Factory

Php Pdf Factory is a PDFLib that allows you to freely create PDF using PHP. It has administrative interface and iImplements most iImplemenrecommended features mmended features like PageTrees, On. ...

JODConverter

JODConverter, the Java OpenDocument Converter, converts documents between different office formats.It leverages OpenOffice.org, which provides arguably the best import/export filters for OpenDocument and Microsoft Office formats available today.JODConverter automates all conversions supported by OpenOffice.org, including - Microsoft Office to OpenDocument, and viceversa - Word to OpenDocument Text (odt); OpenDocument Text ...

FarsiTeX

FarsiTeX is a free Persian/English bidirectional typesetting system based on Donald Knuth's TeX Program.TeX and his friend METAFONT have served mathematicians and technical writers all over the world for many years and helped them to write prettier and easier. Available in the release are a Windows installer, bundling the editor and ...

AFT script

AFT is a document preparation system. It is mostly free form meaning that there is little intrusive markup. AFT source documents look a lot like plain old ASCII text.AFT has a few rules for structuring your document and these rules have more to do with formatting your text rather than embedding ...

Implementing an Immutable Dictionary

This script represents the implementation of a dictionary, whose items cannot be reset or deleted, nor new can be added. ...
Python

Read a text file by paragraph

Text files are most often read by-line, with excellent direct Python support. Sometimes you need to use other units, such as the paragraph -- a sequence of non-empty lines separated by empty lines. Python doesn't support that directly, but, this script adds such functionality. ...
Python

Read a text file backwards

This script presents another way to read a file line by line, starting at the end. ...
Python

Replacing a portion of a string

This script allows you to replace a portion of a string at a given position. ...
Python

Checking whether a string contains a set of chars

This script contains a function to check on the occurence of a set of characters. ...
Python

Converting Between Different Naming Convetions

These short functions convert identifier names between the most common naming conventions: CapitalizedWords, mixedCase and under_scores. ...
Python

Changing the indentation of a multi line string

When working with text, it may be necessary to change the indentation level of a block. This code will take a multiline string and add or remove leading spaces to each line so that the indentation level of the block matches some absolute number of spaces. ...
Python

Smart pluralisation

Smart pluralisation script has a function that provides more intelligence than simply adding an 's' to the end of a word. ...
Python

Change line endings

When working between platforms, it is often necessary to convert the line endings on files for them to work, especially when it comes to code. Pass Unix Python code with and it goes nowhere. Same on Mac Python with . This code simply and easily fixes the problem. ...
Python

Blender Script

This script allows you to run a very simple templating-system. ...
Python

Fill paragraph

This module contains a function that formats paragraphs of text to have a certain linewidth, optionally stretching lines to that width by filling word gaps with spaces. In other words, it does left-justified/word-wrapped and block formatted paragraphs. ...
Python

Searching nested strings

This script searches nested strings from a line of text. The strings are limited by two different characters. ...
Python

Extract verbatim texts from LaTeX file

This script extracts contents of all verbatim environments from the LaTeX file specified on command line. Modified LaTeX code with verbatiminput commands instead of verbatim is produced on the standard output. ...
Python