public void setGuide() {
    mTitle.setText(Html.fromHtml(mGuide.getTitle()));
    mIntro.setText(Utils.correctLinkPaths(Html.fromHtml(mGuide.getIntroductionRendered())));

    if (!mGuide.getDifficulty().equals("false")) {
      mDifficulty.setText(
          getActivity().getString(R.string.difficulty)
              + ": "
              + Utils.correctLinkPaths(Html.fromHtml(mGuide.getDifficulty())));
    }

    mAuthor.setText(
        getActivity().getString(R.string.author)
            + ": "
            + Utils.correctLinkPaths(Html.fromHtml(mGuide.getAuthor())));
  }