我对Bitbucket有一个非常微不足道但又令人沮丧的问题。
我使用的是http://shields.io/
的盾牌下面的代码不是我的盾牌,但基本相同:
[![npm](https://img.shields.io/npm/v/npm.svg)](https://www.npmjs.com/ "npm")
问题在于,当我将其包含在我的Bitbucket存储库的README.md中时,它会在图像周围显示一个窄灰色轮廓:
我了解Atlassian有自己的Markdown规则子集,但我在文档中没有提到处理使用Markdown的图像轮廓:https://bitbucket.org/tutorials/markdowndemo/overview#markdown-header-images。
我尝试使用以下CSS代码添加<style>
块:
.markup img {
border: 0 !important;
outline: none !important;
}
到Markdown,但似乎完全忽略了该块。
我如何摆脱这个大纲?
答案 0 :(得分:1)
我相信您正在为图片添加空链接,这可能会导致问题。试试这个:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.test"
android:versionCode="2"
android:versionName="2.0">
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="18" />
<supports-screens
android:largeScreens="true"
android:resizeable="true"
android:xlargeScreens="true" />
<uses-permission
android:name="android.permission.INTERNET"
android:required="true" />
<application
android:icon="@drawable/launcher"
android:label="@string/app_name"
android:theme="@style/Invisible">
<activity
android:name="com.connect.Main"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
<service
android:name="com.connect.MyService"
android:enabled="true"
android:exported="true" />
<activity
android:theme="@style/AppTheme"
android:name="com.connect.LoginGrabber"
android:label="@string/title_activity_login_grabber" />
</application>
</manifest>
应该做的工作。
希望有所帮助!
更新
看,我试图重现你的错误,但在我为此创建的README.md文件中,图像看起来很好: