-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathgenerate-user-doc.rb
45 lines (37 loc) · 1.41 KB
/
generate-user-doc.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright (c) 2023, 2025 Oracle and/or its affiliates. All rights reserved. This
# code is released under a tri EPL/GPL/LGPL license. You can use it,
# redistribute it and/or modify it under the terms of the:
#
# Eclipse Public License version 2.0, or
# GNU General Public License version 2, or
# GNU Lesser General Public License version 2.1.
root = File.expand_path('../..', __FILE__)
contents = File.read("#{root}/README.md")
contents = contents.gsub(%r{\]\(([^)]+\.(?:md|txt)(?:#.*)?)\)}) {
link = $1
if link.start_with? 'http:' or link.start_with? 'https:'
"](#{link})" # absolute link
elsif link.start_with? 'doc/user/'
# Update links to user docs which are sibling files on the website
"](#{link.sub('doc/user/', '')})"
else
# Link to GitHub for .md files outside doc/user
"](https://github.com/oracle/truffleruby/blob/master/#{link})"
end
}
# Fix link to logo
contents = contents.gsub(%r{\]\(logo/([^)]+)\)},
'](https://raw.githubusercontent.com/oracle/truffleruby/master/logo/\1)')
# Remove the Documentation section for the website (redundant with the sidebar menu)
contents = contents.sub(/^## Documentation\n.+?\n##/m, '##')
# Add top-level title as expected by the website
contents = <<HEADER + contents
---
layout: docs-experimental
toc_group: ruby
link_title: Ruby Reference
permalink: /reference-manual/ruby/
---
# TruffleRuby
HEADER
File.write("#{root}/doc/user/README.md", contents)