Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 37 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,42 @@ The syntax of the plugin is as follows:

### Examples

**typewriter "hello, world!" 100** - Displays hello world with a 1/10th of a second delay per character.

**typewriter "this is very slow" 500** - Displays the text with half a second delay per character.
`**typewriter "hello, world!" 100**` - Displays hello world with a 1/10th of a second delay per character.

![This is an example image](woah.gif)

<!-- wp:code -->
<pre class="wp-block-code"><code>@echo off
Title TypeWriter Demo - www.batch-man.com
cls

REM Including Typewriter Location into the default PATH
Pushd "..\typewriter\bin"
Set "Path=%Path%;%cd%"
Popd

color 09
echo This is a demo of the typewriter plugin.
echo.&amp;pause&amp;Echo.
typewriter "This should display relatively quickly" 50
echo.&amp;pause&amp;Echo.
typewriter "This should display about half as fast" 100
echo.&amp;pause&amp;Echo.
typewriter "A little slower..." 200
echo.&amp;pause&amp;Echo.
typewriter "Half a second" 500
echo.&amp;pause&amp;Echo.
typewriter "One second delay" 1000
echo.&amp;pause&amp;Echo.
echo Demonstration finished.
echo.&amp;pause&amp;Echo.
exit</code></pre>
<!-- /wp:code -->

This will demonstrate diffrent ways to use typewriter plugin
![Animation](https://user-images.githubusercontent.com/82807654/177024378-78e45476-8b56-4d93-8856-bd0c6d058257.gif)

**Video-**https://www.youtube.com/watch?v=BsTxP5uI4Ps

**Article-**https://batch-man.com/typewriter/

22 changes: 15 additions & 7 deletions demo/demo.bat → demo/Demo_TypeWriter.bat
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
@echo off
Title TypeWriter Demo - www.batch-man.com
cls

REM Including Typewriter Location into the default PATH
Pushd "..\typewriter\bin"
Set "Path=%Path%;%cd%"
Popd

color 09
echo This is a demo of the typewriter plugin.
pause
echo.&pause&Echo.
typewriter "This should display relatively quickly" 50
pause
echo.&pause&Echo.
typewriter "This should display about half as fast" 100
pause
echo.&pause&Echo.
typewriter "A little slower..." 200
pause
echo.&pause&Echo.
typewriter "Half a second" 500
pause
echo.&pause&Echo.
typewriter "One second delay" 1000
pause
echo.&pause&Echo.
echo Demonstration finished.
pause
echo.&pause&Echo.
exit