We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
query working only without ^^xsd:string specification.
fixed 2 more missing <tt> tags (caused missing : on rendered page)
: missing of rendered page because of missing <tt> markups
Updated BookTutorial (mediawiki)
work on BookTutorial
replace all the notes/warnings by blockquote SED: :a;N;$!ba;s|<pre>[^>#]*\#div[^\n]*\n([^>]+)\n</pre>|<blockquote>'''\n\1\n'''</blockquote>|g
dos2unix all the wiki files
replace all the \ by <br>
fix all the image links for i in *.mediawiki; do gsed -i -r "s/\[\[Image\(([^,\)]+)\).*\]\]/[[attachments\/${i%.*}\/\1]]/g" $i; done for i in *.mediawiki; do gsed -i -r "s/\[\[attachments(.*),(.*)\]\]/[[attachments\1|\2]]/g" $i; done for i in *.mediawiki; do gsed -i -r "s/\[\[attachments(.*),(.*)\]\]/[[attachments\1|\2]]/g" $i; done
fix the images links which do have additional parameters for i in *.mediawiki; do gsed -i -r "s/\[\[Image\(([^,\)]+)\).*\]\]/[[attachments\/${i%.*}\/\1]]/g" $i; done
s/\*\*(\w*)\*\*/'''\1''' /g
fix the list in wiki by replacing '-' to '*' for i in *.mediawiki; do gsed -i -re 's/^(\s*)- /\1* /g' $i; done
batch convert tracwiki files to mediawiki formats