项目符号列表中的 Markdown 链接未解析

Markdown links within a bullet list are not resolving

我正在尝试使用 Markdown 和 Jekyll 为我的博客创建链接的项目符号列表,但出现了一些奇怪的行为。

Finally, many of the data sets that were used in the studies mentioned above are open source and freely available.  
-   [Visceral](http://www.visceral.eu/)
-   [ImageNet](http://image-net.org/)
-   [Kaggle Data Science Bowl](https://www.kaggle.com/c/data-science-bowl-2017)
-   [Grand Challenge](https://grand-challenge.org/All_Challenges/)
-   [Lung Image Database Consortium](https://imaging.cancer.gov/programsandresources/informationsystems/lidc)
-   [Multimodal Brain Tumor Segmentation Challenge](http://braintumorsegmentation.org/)

 Thanks for reading, and please feel free to [reach out](http://healthcare.ai/contact) with questions!

我网站上的输出如下所示:

项目符号列表中的链接可以正常使用,但没有下划线。段落中的链接带有下划线。我希望所有链接都带有下划线。

只需将这段(非常丑陋的)代码添加到您的 body/layout:

<style>
li a {text-decoration: underline!important;}
</style>

或者,更好的是,只将 CSS 添加到您的样式表中。

如果您已经走到这一步,您可能还想通过在 'li a' 选择器前面添加 ancestor/parent class 来使其更具体。