diff --git a/perl6-pod.html.markdown b/perl6-pod.html.markdown
index 6c769acb..80a501b8 100644
--- a/perl6-pod.html.markdown
+++ b/perl6-pod.html.markdown
@@ -5,17 +5,14 @@ contributors:
filename: learnpod.pod6
---
-Perl 6 Pod is an easy-to-use and purely descriptive mark-up language,
+Pod is an easy-to-use and purely descriptive mark-up language,
with no presentational components. Besides its use for documenting
-Perl 6 programs and modules, Pod can be utilized to write language
+Raku Perl 6 programs and modules, Pod can be utilized to write language
documentation, blogs, and other types of document composition as well.
Pod documents can be easily converted to HTML and many other formats
(e.g., Markdown, Latex, plain text, etc.) by using the corresponding
-variant of the `Pod::To` modules (e.g. `` for HTML conversion).
-
-Note: This document can be also be found as a Pod document
-[here](https://git.io/fpxKI).
+variant of the `Pod::To` modules (e.g. `Pod::To::HTML` for HTML conversion).
- [General Info](#general-info)
- [Pod Basics](#pod-basics)
@@ -52,21 +49,23 @@ generate documentation.
```
=begin pod
-A very simple Perl 6 Pod document. All the other directives go here!
+A very simple Raku Perl 6 Pod document. All the other directives go here!
=end pod
```
-Pod documents usually coexist with Perl 6 code. If by themselves, Pod files
-often have the `.pod6` suffix. Moving forward, it's assumed that the
-constructs are between the `=begin pod ... =end pod` directives.
+Pod documents usually coexist with Raku Perl 6 code. If by themselves,
+Pod files often have the `.pod6` suffix. Moving forward, it's assumed that
+the constructs being discussed are surrounded by the `=begin pod ... =end pod`
+directives.
## Pod Basics
### Basic Text Formatting
Text can be easily styled as bold, italic, underlined or verbatim (for code
-formatting) using the formatting code: `B<>`, `I<>`, `U<>` and `C<>`.
+formatting) using the following formatting codes: `B<>`, `I<>`, `U<>`
+and `C<>`.
```
B
@@ -81,7 +80,8 @@ The function C is treated as verbatim.
There are more formatting codes (e.g., `L<>`, `T<>`, etc.) but they'll be
discussed later throughout the document. You'll recognize them because they're
just a single capital letter followed immediately by a set of single or double
-angle brackets. The Unicode variant («») can also be used.
+angle brackets. The Unicode variant («») of the angle brackets can also be
+used.
### Headings
@@ -136,7 +136,7 @@ This is another ordinary paragraph albeit shorter.
### Lists
-Unordered lists can be made using the `=item` directive.
+Unordered lists can be created using the `=item` directive.
```
=item Item
@@ -145,7 +145,8 @@ Unordered lists can be made using the `=item` directive.
```
Sublists are achieved with items at each level specified using the `=item1`,
-`=item2`, `=item3`, etc. directives.
+`=item2`, `=item3`, `...`, `=itemN` etc. directives. The `=item` directive
+defaults to `=item1`.
```
=item1 Item one
@@ -156,8 +157,8 @@ Sublists are achieved with items at each level specified using the `=item1`,
=item1 Item four
```
-Definition lists that define terms or commands use the `=defn`. This is
-equivalent to the `
` element in HTML.
+Definition lists that define terms or commands use the `=defn` directive.
+This is equivalent to the `
` element in HTML.
```
=defn Beast of Bodmin
@@ -172,7 +173,7 @@ A giant owl-like creature.
### Code Blocks
-A code block is created (which uses the `` element) by starting each
+A code block is created (which uses the HTML `` element) by starting each
line with one or more whitespace characters.
```
@@ -185,16 +186,16 @@ As shown in the [Basic Text Formatting](#basic-text-formatting) section,
inline code can be created using the `C<>` code.
```
-In Perl 6, there are several functions/methods to output text. Some of them
+In Raku Perl 6, there are several functions/methods to output text. Some of them
are C, C and C.
```
### Comments
-Although Pod blocks are ignored by the Perl 6 compiler, everything indentified
-as a Pod block will be read and interpreted by Pod renderers. In order to
-prevent Pod blocks from being rendered by any renderer, use the `=comment`
-directive.
+Although Pod blocks are ignored by the Raku Perl 6 compiler, everything
+indentified as a Pod block will be read and interpreted by Pod renderers. In
+order to prevent Pod blocks from being rendered by any renderer, use the
+`=comment` directive.
```
=comment Add more here about the algorithm.
@@ -205,12 +206,12 @@ directive.
To create inline comments, use the `Z<>` code.
```
-Pod is awesome Z. And Perl 6 too!
+Pod is awesome Z. And Raku Perl 6 too!
```
Given that the Perl interpreter never executes embedded Pod blocks,
comment blocks can also be used as an alternative form of nestable block
-comments in Perl 6.
+comments in Raku Perl 6.
### Links
@@ -219,7 +220,7 @@ a `L<>` code. The general format is `L