Skip to content

Commit 24ab020

Browse files
committed
Update documentation image URLs
1 parent 2b29eb1 commit 24ab020

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/Installation/Windows/Dragon_NaturallySpeaking.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ After installing Dragon, you can configure the DNS settings based on your prefer
3939

4040
3. Configure the Natlink GUI
4141

42-
![natlink_gui](/images/natlink_gui.png)
42+
![natlink_gui](https://github.com/dictation-toolbox/Caster/blob/master/docs/images/natlink_gui.png)
4343

4444
- **Optionally** Check the relevant project Dragonfly or Unimacro to configure the file path to the grammars.
4545

4646
4. Start Dragon start Dragon, the `Messages from Natlink` window should show loading a dragonfly script. In the picture blow is an example loading module`_caster` is `_caster.py`.
4747

48-
![natlink_running](/images/natlink_running.png)
48+
![natlink_running](https://github.com/dictation-toolbox/Caster/blob/master/docs/images/natlink_running.png)
4949

5050
Scrips starting with an underscore and ending in .py `_*.py` will be imported in alphabetical order, except `__init__.py` will be loaded first if it exists.
5151

docs/Rule_Construction/Advanced_Caster_Rules/NodeRule.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ So, let's say for example that I want to be able to speak any of the following c
2323

2424
That's sixteen specs getting added. Since a lot of them will only be spoken after others, this command set fits well into a tree structure. (Not all command sets will.) The number of specs in the active CCR grammar from this command set can be reduced by only keeping a certain number of levels of the tree structure open (speakable) at a given time.
2525

26-
<img src="https://raw.githubusercontent.com/dictation-toolbox/Caster/master/docs/img/noderule1.png">
26+
<img src="https://github.com/dictation-toolbox/Caster/blob/master/docs/images/noderule1.png">
2727

2828
In the above diagram, the first two levels of the tree are active. This means I can speak these specs:
2929

@@ -41,7 +41,7 @@ In the above diagram, the first two levels of the tree are active. This means I
4141

4242
If I then speak spec (a), it's effect occurs, and the NodeRule updates itself so that the active nodes look like the diagram below.
4343

44-
<img src="https://raw.githubusercontent.com/dictation-toolbox/Caster/master/docs/img/noderule2.png">
44+
<img src="https://github.com/dictation-toolbox/Caster/blob/master/docs/images/noderule2.png">
4545

4646
If I had spoken (a d) instead, only (m) would have been available next.
4747

docs/Rule_Construction/Taxonomy_of_a_Rule.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Throughout the Caster documentation, you will see references to `rule`, `command`, `spec`, `action`, `extra`, and `default`s. These all refer to parts of a Rule, typically a MappingRule or MergeRule. Both are structured the same way, as depicted below.
44

5-
<img src="https://raw.githubusercontent.com/dictation-toolbox/Caster/master/docs/img/terminology.png">
5+
<img src="https://github.com/dictation-toolbox/Caster/blob/master/docs/images/terminology.png">
66

77
- `spec` : This is what you say in order to invoke an `action`.
88
- `action` : This is what happens when you speak a `spec`. Examples include Dragonfly's [Key](http://dragonfly.readthedocs.io/en/latest/actions.html#key-action), Text, and Function actions, or Caster's [R](http://caster.readthedocs.io/en/latest/caster/doc/readthedocs/ContextStack/#registeredaction), [ContextSeeker](http://caster.readthedocs.io/en/latest/caster/doc/readthedocs/ContextStack/#contextseeker), or [AsynchronousAction](http://caster.readthedocs.io/en/latest/caster/doc/readthedocs/ContextStack/#asynchronousaction) actions.

0 commit comments

Comments
 (0)