Skip to content

Commit 27e8a15

Browse files
committed
Formatting
1 parent 35bff52 commit 27e8a15

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# ibex_user_manual
2-
See https://github.com/ISISComputingGroup/ibex_user_manual/wiki/
2+
3+
See https://isiscomputinggroup.github.io/ibex_user_manual

doc/FAQ.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ If you try to load a script and you get the following error:
157157
The problem is you have not escaped the string correctly, in python the slash character, `\\`, is an escape character used to create things like newline characters. In this command, the `\\N` is a newline character and is causing python trouble. You can either:
158158

159159
#. Place an `r` before the string (called a raw string) this makes it ignore escapes except for quote marks
160-
- `g.load_script(r'c:\\scripts\\NiceScript.py')`
160+
- ``g.load_script(r'c:\\scripts\\NiceScript.py')``
161161
#. Escape the slashes
162-
- `g.load_script('c:\\\\scripts\\\\NiceScript.py')`
162+
- ``g.load_script('c:\\\\scripts\\\\NiceScript.py')``
163163
#. Just use the default script path so:
164-
- `g.load_script('NiceScript.py')`
164+
- ``g.load_script('NiceScript.py')``
165165

166166
Can I run scripts from Mantid?
167167
-----------------------------------------------------------------

0 commit comments

Comments
 (0)