【问题标题】:VS Code Jupyter Notebooks Markdown for links not workingVS Code Jupyter Notebooks Markdown 链接不起作用
【发布时间】:2020-09-26 13:10:32
【问题描述】:

我正在尝试在 vs code Jupyter notebook 中设置一个链接。无论我尝试哪种方式,它似乎都不起作用。我最后一次尝试是使用 [id] 标签,仍然没有乐趣!

for more explanation on headers see [here] [goog] 
[goog]: https://www.kaggle.com/lava18/google-play-store-apps

不确定 VS Code 中是否存在错误,或者是否是我,更可能是后者,非常感谢任何帮助。 谢谢!

【问题讨论】:

    标签: visual-studio-code jupyter-notebook


    【解决方案1】:

    请确保您没有将 HTML 标记与纯 Markdown 混合使用。如果您尝试将链接嵌套在

    或表格单元格,它将不起作用。您必须专门使用简单的降价。

    See the basic markdown here

    【讨论】:

      【解决方案2】:

      你可能需要学习一些基本的 markdown 语法:

      [goog](https://www.kaggle.com/lava18/google-play-store-apps)
      

      然后按CTRL+ENTER,会是:

      goog

      [xxx] https://... 是另一种用于为链接分配标签以方便引用的用法:

      ...
      [goog][1]
      ...
      ...
      ...
      [1]: https://www.kaggle.com/lava18/google-play-store-apps
      [2]: ...
      [3]: ...
      THE END
      

      【讨论】:

        【解决方案3】:

        你也可以试试

        __[https://www.kaggle.com/lava18/google-play-store-apps](for more explanation on headers see here)__

        这将返回以下内容:

        https://www.kaggle.com/lava18/google-play-store-apps(有关标题的更多说明,请参见此处)

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 2020-12-30
          • 1970-01-01
          • 2023-02-24
          • 2020-09-07
          • 2020-05-18
          • 2021-11-12
          • 2018-02-04
          • 2021-01-10
          相关资源
          最近更新 更多