@@ -101,7 +101,7 @@ Most of the examples intend to demonstrate a single question type or feature:
101101Take ` type ` , ` name ` , ` message ` , ` choices ` [ , ` default ` , ` filter ` ] properties. (Note that
102102default must be the choice ` index ` in the array or a choice ` value ` )
103103
104- ![ List prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/input-prompt.png )
104+ ![ List prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/input-prompt.png )
105105s
106106---
107107
110110Take ` type ` , ` name ` , ` message ` , ` choices ` [ , ` default ` , ` filter ` ] properties. (Note that
111111default must the choice ` index ` in the array)
112112
113- ![ Raw list prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/raw-list.png )
113+ ![ Raw list prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/raw-list.png )
114114
115115---
116116
@@ -123,8 +123,8 @@ Note that the `choices` object will take an extra parameter called `key` for the
123123
124124See ` examples/expand.py ` for a running example.
125125
126- ![ Expand prompt closed] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/expand-prompt-1.png )
127- ![ Expand prompt expanded] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/expand-prompt-2.png )
126+ ![ Expand prompt closed] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/expand-prompt-1.png )
127+ ![ Expand prompt expanded] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/expand-prompt-2.png )
128128
129129---
130130
@@ -136,31 +136,31 @@ Choices marked as `{checked: true}` will be checked by default.
136136
137137Choices whose property ` disabled ` is truthy will be unselectable. If ` disabled ` is a string, then the string will be outputted next to the disabled choice, otherwise it'll default to ` "Disabled" ` . The ` disabled ` property can also be a synchronous function receiving the current answers as argument and returning a boolean or a string.
138138
139- ![ Checkbox prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/checkbox-prompt.png )
139+ ![ Checkbox prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/checkbox-prompt.png )
140140
141141---
142142
143143#### Confirm - ` {type: 'confirm'} `
144144
145145Take ` type ` , ` name ` , ` message ` [ , ` default ` ] properties. ` default ` is expected to be a boolean if used.
146146
147- ![ Confirm prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/confirm-prompt.png )
147+ ![ Confirm prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/confirm-prompt.png )
148148
149149---
150150
151151#### Input - ` {type: 'input'} `
152152
153153Take ` type ` , ` name ` , ` message ` [ , ` default ` , ` filter ` , ` validate ` ] properties.
154154
155- ![ Input prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/input-prompt.png )
155+ ![ Input prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/input-prompt.png )
156156
157157---
158158
159159#### Password - ` {type: 'password'} `
160160
161161Take ` type ` , ` name ` , ` message ` [ , ` default ` , ` filter ` , ` validate ` ] properties.
162162
163- ![ Password prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/develop /docs/images/password-prompt.png )
163+ ![ Password prompt] ( https://raw.githubusercontent.com/citguru/PyInquirer/master /docs/images/password-prompt.png )
164164
165165---
166166
0 commit comments