summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--topics/xapian/xapian-indexing.gmi9
1 files changed, 7 insertions, 2 deletions
diff --git a/topics/xapian/xapian-indexing.gmi b/topics/xapian/xapian-indexing.gmi
index 55eaf96..1c3aa98 100644
--- a/topics/xapian/xapian-indexing.gmi
+++ b/topics/xapian/xapian-indexing.gmi
@@ -23,18 +23,23 @@ It is important to note that the performance bottlenecks identified in this docu
 
 You'll set up virtuoso locally. Here are guix specific instructions:
 
+```
 > guix install virtuoso-ose # or any other means to install virtuoso
 > cd /path/to/virtuoso/database/folder
 > cp $HOME/.guix-profile/var/lib/virtuoso/db/virtuoso.ini ./virtuoso.ini
 > # modify the virtuoso.ini file to save files to the folder you'd prefer
 > virtuoso-t +foreground +wait +debug
+```
 
 and load up data by:
 
+```
 > isql
 > # subsquent commands run in isql prompt
-> ld_dir ('/path/to/folder/with/ttls', '*.ttl', 'http://genenetwork.org') # preferable have this folder be in the virtuoso database folder
-> rdf_run_loader
+> # preferable have this folder be in the virtuoso database folder
+> ld_dir ('/path/to/folder/with/ttls', '*.ttl', 'http://genenetwork.org');
+> rdf_loader_run();
+```
 
 Ping @bmunyoki for the ttl folder backups.