Update regex to match anchor links

This commit is contained in:
Blerim Sheqa 2017-11-30 09:00:23 +01:00
parent 487815e6f0
commit b5495d40db
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ main_pages = build_page_index(full_docs_dir, config['project']['docs_dir'])
index_file = "#{clone_target}/index.md"
FileUtils.cp("#{clone_target}/#{main_pages[0].values[0]}", index_file)
index_content = File.read(index_file)
index_new_content = index_content.gsub(/\(((?!http)\S+(\.md|\.png))\)/, "(#{config['project']['docs_dir']}/\\1)")
index_new_content = index_content.gsub(/\(((?!http)\S+(\.md|\.png)(\S+)?)\)/, "(#{config['project']['docs_dir']}/\\1)")
File.open(index_file, "w") {|file| file.puts index_new_content }
mkdocs['pages'].push('' => "index.md")

View File

@ -1,7 +1,7 @@
---
site_name: 'Icinga Web 2'
source_dir: 'www/source'
site_dir: 'www/html'
source_dir: 'www/docs/source'
site_dir: 'www/docs/html'
project:
git: 'https://github.com/Icinga/icingaweb2.git'
ref: 'master'