Skip to content

storage: fix link syntax #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

## Using FirebaseUI to download and display images

[Firebase Storage](firebase-storage) provides secure file uploads and downloads for your Firebase apps,
[Firebase Storage][firebase-storage] provides secure file uploads and downloads for your Firebase apps,
regardless of network quality. You can use it to store images, audio, video, or other
user-generated content. Firebase Storage is backed by Google Cloud Storage, a powerful, simple,
and cost-effective object storage service.

FirebaseUI provides bindings to download an image file stored in Firebase Storage
from a [`StorageReference`](storage-reference) and display it using the popular
[Glide](glide) library. This technique allows you to get all of Glide's performance
from a [`StorageReference`][storage-reference] and display it using the popular
[Glide][glide] library. This technique allows you to get all of Glide's performance
benefits while leveraging Firebase Storage's authenticated storage capabilities.

To load an image from a `StorageReference`, simply use the `FirebaseImageLoader` class:
Expand All @@ -30,7 +30,7 @@ To load an image from a `StorageReference`, simply use the `FirebaseImageLoader`

Images displayed using `FirebaseImageLoader` are cached by their path in Firebase Storage, so
repeated loads will be fast and conserve bandwidth. For more information on caching in Glide,
see [this guide](glide-caching)
see [this guide][glide-caching].

## Known Issues

Expand Down