From 9043add656177eeac1491a73d2f3ab92bec0013c Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Sat, 29 Dec 2018 14:31:27 -0500 Subject: Imported Upstream version 8.8.2 --- test-suite/coqdoc/links.html.out | 206 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 206 insertions(+) create mode 100644 test-suite/coqdoc/links.html.out (limited to 'test-suite/coqdoc/links.html.out') diff --git a/test-suite/coqdoc/links.html.out b/test-suite/coqdoc/links.html.out new file mode 100644 index 00000000..5e4b676c --- /dev/null +++ b/test-suite/coqdoc/links.html.out @@ -0,0 +1,206 @@ + + + + + +Coqdoc.links + + + + +
+ + + +
+ +

Library Coqdoc.links

+ +
+
+ +
+Various checks for coqdoc + +
+ +
    +
  • symbols should not be inlined in string g + +
  • +
  • links to both kinds of notations in a' should work to the right notation + +
  • +
  • with utf8 option, forall must be unicode + +
  • +
  • splitting between symbols and ident should be correct in a' and c + +
  • +
  • ".." should be rendered correctly + +
  • +
+ +
+
+ +
+Require Import String.
+ +
+Definition g := "dfjkh""sdfhj forall <> * ~"%string.
+ +
+Definition a (b: nat) := b.
+ +
+Definition f := C:Prop, C.
+ +
+Notation "n ++ m" := (plus n m).
+ +
+Notation "n ++ m" := (mult n m). +
+Notation "n ** m" := (plus n m) (at level 60).
+ +
+Notation "n ▵ m" := (plus n m) (at level 60).
+ +
+Notation "n '_' ++ 'x' m" := (plus n m) (at level 3).
+ +
+Inductive eq (A:Type) (x:A) : A Prop := eq_refl : x = x :>A
+
+where "x = y :> A" := (@eq A x y) : type_scope.
+ +
+Definition eq0 := 0 = 0 :> nat.
+ +
+Notation "( x # y ; .. ; z )" := (pair .. (pair x y) .. z).
+ +
+Definition b_α := ((0#0;0) , (0 ** 0)).
+ +
+Notation h := a.
+ +
+  Section test.
+ +
+    Variables b' b2: nat.
+ +
+    Notation "n + m" := (n m) : my_scope.
+ +
+    Delimit Scope my_scope with my.
+ +
+    Notation l := 0.
+ +
+    Definition α := (0 + l)%my.
+ +
+    Definition a' b := b'++0++b2 _ ++x b.
+ +
+    Definition c := {True}+{True}.
+ +
+    Definition d := (1+2)%nat.
+ +
+    Lemma e : nat + nat.
+    Admitted.
+ +
+  End test.
+ +
+  Section test2.
+ +
+    Variables b': nat.
+ +
+    Section test.
+ +
+      Variables b2: nat.
+ +
+      Definition a'' b := b' ++ O ++ b2 _ ++ x b + h 0.
+ +
+    End test.
+ +
+  End test2.
+ +
+
+ +
+skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+ + skip +
+
+ +
+
+
+ + + +
+ + + \ No newline at end of file -- cgit v1.2.3