mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 03:42:17 +00:00
fixed docs type issue
This commit is contained in:
parent
3d80b82973
commit
772441dbcb
1 changed files with 9 additions and 0 deletions
|
@ -284,6 +284,15 @@ fn render_module_documentation(
|
||||||
buf.push_str("</section>");
|
buf.push_str("</section>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DocEntry::ModuleDoc(docs) => {
|
||||||
|
markdown_to_html(
|
||||||
|
&mut buf,
|
||||||
|
all_exposed_symbols,
|
||||||
|
&module.scope,
|
||||||
|
docs,
|
||||||
|
root_module,
|
||||||
|
);
|
||||||
|
}
|
||||||
DocEntry::DetachedDoc(docs) => {
|
DocEntry::DetachedDoc(docs) => {
|
||||||
markdown_to_html(
|
markdown_to_html(
|
||||||
&mut buf,
|
&mut buf,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue