我试图使用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!
我的网站上的输出如下:
项目符号列表中的链接可以正常工作,但它们没有加下划线。该段内的链接带有下划线。我希望所有链接都显示为带下划线。
答案 0 :(得分:0)
只需将此(非常难看)的代码添加到您的身体/布局中:
<style>
li a {text-decoration: underline!important;}
</style>
或者,更好的是,只将CSS添加到样式表中。
如果你已经做到这一点,你可能还希望通过在&#39; li a&#39;前面添加一个祖先/父级来使其更具体。选择器。