Rewirte links to PNG images in index.md
This commit is contained in:
parent
7bf811f84d
commit
487815e6f0
|
@ -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).*\.md.*)\)/, "(#{config['project']['docs_dir']}/\\1)")
|
||||
index_new_content = index_content.gsub(/\(((?!http)\S+(\.md|\.png))\)/, "(#{config['project']['docs_dir']}/\\1)")
|
||||
File.open(index_file, "w") {|file| file.puts index_new_content }
|
||||
mkdocs['pages'].push('' => "index.md")
|
||||
|
||||
|
|
Loading…
Reference in New Issue