0

I generated multiples html files from multiple Rmarkdown script and I want to create a main page with links to the different html files, a bit like a table of content.

I found the r package 'book down' but it doesn't seem to work with directly html files and I have difficulties when I tried with the Rmarkdown files due to the usage of template in these files.

Any idea ?

Thanks

1 Answer 1

2

You can just create a Notepad file with HTML code like this containing your links:

<html>
<body>
<a href="http://www.example1.com">Link 1</a>
<a href="http://www.example2.com">Link 2</a>
</body>
</html>

and then save it as example.html, then open it, it will be an HTML page with links.

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks! Indeed this solution seems to be the most effective

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.