# Internalize - Example list
#
# This is an example list for Internalize; a plain text file with sentences or
# short texts. Below is a description of what to take care of when creating
# your own lists:
#
# - The file has to be UTF-8 encoded unless it consists of ASCII characters
# only.
# - BLANK LINES are treated as belonging to the sentences / texts.
# - Lines starting with # directly at the beginning are considered COMMENT
# lines.
# - The string "\#" is displayed as "#" in the text. (See example below.)
# - A separate line containing exactly 10 asterisks (**********) beginning at
# the start of the line is used as the delimiter between single list entries.
# - There is NO ASTERISK LINE BEFORE FIRST SENCENCE / text.
# - It does not matter whether there is an asterisk line after the last entry
# or not.
#
# For those of you who like to experiment:
# Simple, direct HTML formatting is supported already. To which extent is
# still to be tested. We'll take care of it some time in the future.
#
#
Every single thought counts.
**********
Every moment is a new moment.
**********
# When HTML formatting is used, line breaks must have a
:
The aim is always in the future.
But LIFE is only NOW.
**********
I will only react to constructive suggestions.
**********
My point of power is in the present.
**********
Every day my life is getting better, easier and more beautiful.
**********
Clouds come and go.
**********
Carpe diem.
**********
\#!/bin/bash
while true ; do
echo "This is NOW." ; sleep 1
done
**********
# Unfortunately at the present time the text must be in a table, if you want
# it to be aligned left; align="left" does not work yet:
\#!/bin/bash while true ; do echo "This is NOW." ; sleep 1 done |