Adds the ability to specify IDs for content blocks and create internal links to these elements. You can add an ID for some block and when you create a link you will see the ability to a bookmark link to that element.
<!DOCTYPE html>
<html>
<head>
<title>Redactor</title>
<meta charset="utf-8">
<!-- css -->
<link rel="stylesheet" href="/your-folder/redactor.css" />
</head>
<body>
<!-- element -->
<textarea id="entry">...</textarea>
<!-- js -->
<script src="/your-folder/redactor.js"></script>
<script src="/your-folder/plugins/anchor/anchor.js"></script>
<!-- call -->
<script>
Redactor('#entry', {
plugins: ['anchor']
});
</script>
</body>
</html>