Gets the website
wget -nH --reject-regex 'Especial|Special|Ayuda|Help|action|printable|Archivo:' --recursive --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains domain.com --no-parent http://domain.com/wiki
Remove external links regexp
Find: (<a[^>]*href="http)[^"]*("[^>]*>)([^"]*)(</a>)
Replace: $3
Hide navigation, header and footer
#mw-navigation {display:none;}
#left-navigation,#mw-head-base{margin-left:0em;}
@media screen {
#mw-page-base,#mw-head-base,#footer,.mw-editsection {display:none;}
.mw-body{margin-left:0em;}
}