From bc1bde090a34bca24d6311cf95e3ce9667c4cbff Mon Sep 17 00:00:00 2001 From: Jason Yundt Date: Aug 05 2021 13:36:55 +0000 Subject: Present reader with smart apostrophes Originally, this repo would sometimes present the reader with U+0027 APOSTROPHE for apostrophes and sometimes present the reader with U+2019 RIGHT SINGLE QUOTATION MARK for apostrophes. This change makes it use U+2019 because that’s what Unicode recommends. See: - https://www.unicode.org/versions/Unicode13.0.0/ch06.pdf#G12411 - https://www.unicode.org/charts/PDF/U0000.pdf#page=4 --- diff --git a/README.md b/README.md index df7d112..8216cdc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Fedora Release Notes Please report Issues and submit Pull Requests for **Content Fixes** here. -Never done a pull request (or "PR")? Here's the [Pagure documentation for +Never done a pull request (or "PR")? Here’s the [Pagure documentation for Pull Requests](https://docs.pagure.org/pagure/usage/pull_requests.html). @@ -45,7 +45,7 @@ the [publishing software](https://pagure.io/fedora-docs/docs-fp-o). Antora introduces two new terms: * **Component** — Simply put, a component is a part of the documentation website with its own menu. Components can also be versioned. In the Fedora Docs, we use separate components for user documentation, the Fedora Poject, Fedora council, Mindshare, FESCO, but also subprojects such as CommOps or Modulartity. -* **Module** — A component can be broken down into multiple modules. Modules still share a single menu on the site, but their sources can be stored in different git repositories, even owned by different groups. The default module is called "ROOT" (that's what is in this example). If you don't want to use multiple modules, only use "ROOT". But to define more modules, simply duplicate the "ROOT" directory and name it anything you want. You can store modules in one or more git repositories. +* **Module** — A component can be broken down into multiple modules. Modules still share a single menu on the site, but their sources can be stored in different git repositories, even owned by different groups. The default module is called "ROOT" (that’s what is in this example). If you don’t want to use multiple modules, only use "ROOT". But to define more modules, simply duplicate the "ROOT" directory and name it anything you want. You can store modules in one or more git repositories. ## Local preview @@ -65,7 +65,7 @@ The result will be available at http://localhost:8080 ### Installing Podman on Fedora -Fedora Workstation doesn't come with Podman preinstalled by default — so you might need to install it using the following command: +Fedora Workstation doesn’t come with Podman preinstalled by default — so you might need to install it using the following command: ``` $ sudo dnf install podman @@ -86,7 +86,7 @@ $ git clone https://pagure.io/fedora-docs/docs-fp-o.git $ cd docs-fp-o ``` -Find a reference to the repository you're changing in the `site.yml` file, and change it so it points to your change. +Find a reference to the repository you’re changing in the `site.yml` file, and change it so it points to your change. So for example, if I made a modification to the Modularity docs, I would find: ``` @@ -106,9 +106,9 @@ And replaced it with a pointer to my fork: ... ``` -I could also point to a local repository, using `HEAD` as a branch to preview the what's changed without the need of making a commit. +I could also point to a local repository, using `HEAD` as a branch to preview the what’s changed without the need of making a commit. -**Note:** I would need to move the repository under the `docs-fp-o` directory, because the builder won't see anything above. +**Note:** I would need to move the repository under the `docs-fp-o` directory, because the builder won’t see anything above. So I would need to create a `repositories` directory in `docs-fp-o` and copy my repository into it. ```