Clean up javadoc -- we use markdown.
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java
index 621bde9..93f01bc 100644
--- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java
+++ b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowChoreographer.java
@@ -110,7 +110,7 @@
    * AnimationHandler would result in endless looping (the execution of the task results in a new
    * animation task created and scheduled to the front of the event loop queue).
    *
-   * <p>To prevent endless looping, a test may call {@link #setPostFrameCallbackDelay(int)} to
+   * To prevent endless looping, a test may call {@link #setPostFrameCallbackDelay(int)} to
    * specify a small delay when animation is scheduled.
    *
    * @see #setPostCallbackDelay(int)
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowDevicePolicyManager.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowDevicePolicyManager.java
index 45ee487..146af77 100644
--- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowDevicePolicyManager.java
+++ b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowDevicePolicyManager.java
@@ -180,7 +180,7 @@
   /**
    * Sets the application restrictions of the {@code packageName}.
    *
-   * <p>The new {@code applicationRestrictions} always completely overwrites any existing ones.
+   * The new {@code applicationRestrictions} always completely overwrites any existing ones.
    */
   public void setApplicationRestrictions(String packageName, Bundle applicationRestrictions) {
     applicationRestrictionsMap.put(packageName, applicationRestrictions);
@@ -229,7 +229,7 @@
   /**
    * Sets organization name.
    *
-   * <p>The API can only be called by profile owner since Android N and can be called by both of
+   * The API can only be called by profile owner since Android N and can be called by both of
    * profile owner and device owner since Android O.
    */
   @Implementation(minSdk = N)
@@ -256,11 +256,12 @@
   /**
    * Returns organization name.
    *
-   * <p>The API can only be called by profile owner since Android N.
+   * The API can only be called by profile owner since Android N.
    *
-   * <p>Android framework has a hidden API for getting the organization name for device owner since
+   * Android framework has a hidden API for getting the organization name for device owner since
    * Android O. This method, however, is extended to return the organization name for device owners
-   * too to make testing of {@link setOrganizationName} easier for device owner cases.
+   * too to make testing of {@link #setOrganizationName(ComponentName, CharSequence)} easier for
+   * device owner cases.
    */
   @Implementation(minSdk = N)
   @Nullable
@@ -294,9 +295,9 @@
   /**
    * Sets permitted accessibility services.
    *
-   * <p>The API can be called by either a profile or device owner.
+   * The API can be called by either a profile or device owner.
    *
-   * <p>This method does not check already enabled non-system accessibility services, so will always
+   * This method does not check already enabled non-system accessibility services, so will always
    * set the restriction and return true.
    */
   @Implementation
@@ -316,9 +317,9 @@
   /**
    * Sets permitted input methods.
    *
-   * <p>The API can be called by either a profile or device owner.
+   * The API can be called by either a profile or device owner.
    *
-   * <p>This method does not check already enabled non-system input methods, so will always set the
+   * This method does not check already enabled non-system input methods, so will always set the
    * restriction and return true.
    */
   @Implementation
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowInputMethodManager.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowInputMethodManager.java
index ad73bfd..a7844ec 100644
--- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowInputMethodManager.java
+++ b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowInputMethodManager.java
@@ -15,7 +15,7 @@
   /**
    * Handler for receiving soft input visibility changed event.
    *
-   * <p>Since Android does not have any API for retrieving soft input status, most application
+   * Since Android does not have any API for retrieving soft input status, most application
    * relies on GUI layout changes to detect the soft input change event. Currently, Robolectric are
    * not able to simulate the GUI change when application changes the soft input through {@code
    * InputMethodManager}, this handler can be used by application to simulate GUI change in response