mirror of https://github.com/rails/rails
Disable autolink in example code blocks in guides.
/cc @chancancode @robin850 configuration reference: http://alexgorbatchev.com/SyntaxHighlighter/manual/configuration/ Related issues: * https://github.com/vmg/redcarpet/issues/334 * https://github.com/docrails-tw/guides/issues/62
This commit is contained in:
parent
64c62d35bd
commit
0d9e58f879
|
@ -51,3 +51,9 @@ var guidesIndex = {
|
|||
window.location = url;
|
||||
}
|
||||
};
|
||||
|
||||
// Disable autolink inside example code blocks of guides.
|
||||
$(document).ready(function() {
|
||||
SyntaxHighlighter.defaults['auto-links'] = false;
|
||||
SyntaxHighlighter.all();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue