Databricks 笔记本中 Markdown 的一些问题

问题描述 投票:0回答:2

我试图标记一些要点,并尝试根据此教程突出显示文档中的一些重要部分,但没有成功。

我无法在 Databricks 笔记本和 GoogleColab 笔记本中正确运行以下命令:

%md

This is <span style="background-color: #FFFF00">highlighted</span>
This is <span style="color:red">red</span>

期望的降价结果:

img

markdown google-colaboratory databricks azure-databricks
2个回答
0
投票

我已经在我的环境中重现并在 google Collab 中得到了预期结果,如下所示:

This is <font  color='red'> red </font>

<mark  style="background-color: lightblue">Rithwik</mark>

enter image description here

据我所知,我找不到任何关于 Markdown 的官方文档(突出显示单词),并且据我了解,Databricks 不支持此功能,我建议您提出功能请求。


0
投票

不确定现在是否相关,但在数据块中,当语言为 MD 时,您无法添加颜色。但是,如果单元格是 scala/python,则 html 会正确显示。 screenshot from databricks

displayHTML("""
<p><h2>Load Files:</h2></p>
<p>This method provides a generic functionality to load files into a dataframe. This takes some mandatory parameters like format of the file, path of the file and some optional parameters dependent upon each file type and returns a dataframe. </p>
<p style='color:red'><b>Note:</b></p>
<p>This method may not cover all the edge cases and cant be used for each and every file type. This is just a wrapper function to cover basic file formats like CSV, Json and Parquet files. </p>
<p style='color:green'>This is how you can use can use this method
<pre><code>
val csvOptions = Map("header" -> "true", "delimiter" -> ",")
val csvSource = DataSource("/path/to/file.csv", "csv", csvOptions)
val df = loadDataSource(spark, csvSource)
</code></pre> </p>
""")
© www.soinside.com 2019 - 2024. All rights reserved.