写GCP walkthrough tutorial时如何在cloud shell中指定图片路径?

How to specify image path in cloud shell when writing GCP walkthrough tutorial?

我是 Writing Walkthroughs in Cloud Shell,我想在

中添加一张图片
#title
## section 
some text
![myimage](./myimage.PNG)

图片和我的在同一个目录下index.md:

.  
├── myfolder  
│   ├── index.md  
│   └── myimage.PNG  
└── README.md 

但是虽然图像显示在编辑器的预览中,但当我从云端启动教程时它没有显示 shell 和 cloudshell launch-tutorial index.md。 然而,有效的是将图像上传到云存储并通过其 URL

引用它

![myimage](https://storage.cloud.google.com/mybucket/myimage.PNG)

但是我如何使用云 shell 文件系统实现同样的目标?

注意 Walktroughs are written to abide the CommonMark Spec.

我认为除了引用文件的URL之外没有其他方法,并且不支持显示本地文件。因此,将文件上传到 Cloud Storage(或任何其他 Blob Storage 平台,您可以从中获得 public URL 图像)并制作 the object publicly readable 实际上是添加的正确方法图片到您的 .md 文件。

我尝试了所有引用本地文件的不同规格 here, all the alternatives shown on this other post, as well as even try to display it as Base64 但没有成功(即使你从那里报告你可以在从云端查看预览时成功看到图像 Shell 的编辑器),因为当您尝试显示引用本地文件的图像时会收到 404 错误消息(即使您输入了完整路径)。