File: image2.html

package info (click to toggle)
ckeditor 4.4.4%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 25,632 kB
  • ctags: 2,419
  • sloc: sh: 190; python: 37; makefile: 29; php: 15; xml: 5
file content (102 lines) | stat: -rw-r--r-- 2,443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<head>
	<script src="../widget/_helpers/tools.js"></script>
</head>
<body>
	<textarea id="editor_image">
		<p>x</p>
		<img id="w1" src="_assets/foo.png" alt="foo" />
	</textarea>

	<textarea id="editor_imageAligned">
		<p>x</p>
		<img id="w1" src="_assets/foo.png" alt="foo" style="float:right" />
	</textarea>

	<textarea id="editor_imageCentered">
		<p>x</p>
		<p style="text-align:center">
			<img id="w1" src="_assets/foo.png" alt="foo" />
		</p>
	</textarea>

	<textarea id="editor_captioned">
		<p>x</p>
		<figure id="w1" class="image">
			<img src="_assets/foo.png" alt="foo" />
			<figcaption>caption1</figcaption>
		</figure>
	</textarea>

	<textarea id="editor_captionedAligned">
		<p>x</p>
		<figure id="w1" class="image" style="float:right">
			<img src="_assets/foo.png" alt="foo" />
			<figcaption>caption1</figcaption>
		</figure>
	</textarea>

	<textarea id="editor_captionedCentered">
		<p>x</p>
		<div style="text-align:center">
			<figure id="w1" class="image" style="display:inline-block">
				<img src="_assets/foo.png" alt="foo" />
				<figcaption>caption1</figcaption>
			</figure>
		</div>
	</textarea>

	<!-- alignClasses -->

	<textarea id="editor_image_alignClasses">
		<p>x</p>
		<img id="w1" src="_assets/foo.png" alt="foo" />
	</textarea>

	<textarea id="editor_imageAligned_alignClasses">
		<p>x</p>
		<img class="r" id="w1" src="_assets/foo.png" alt="foo" />
	</textarea>

	<textarea id="editor_imageCentered_alignClasses">
		<p>x</p>
		<p class="c">
			<img id="w1" src="_assets/foo.png" alt="foo" />
		</p>
	</textarea>

	<textarea id="editor_captioned_alignClasses">
		<p>x</p>
		<figure id="w1" class="image">
			<img src="_assets/foo.png" alt="foo" />
			<figcaption>caption1</figcaption>
		</figure>
	</textarea>

	<textarea id="editor_captionedAligned_alignClasses">
		<p>x</p>
		<figure id="w1" class="image r">
			<img src="_assets/foo.png" alt="foo" />
			<figcaption>caption1</figcaption>
		</figure>
	</textarea>

	<textarea id="editor_captionedCentered_alignClasses">
		<p>x</p>
		<div class="c">
			<figure id="w1" class="image">
				<img src="_assets/foo.png" alt="foo" />
				<figcaption>caption1</figcaption>
			</figure>
		</div>
	</textarea>

	<!-- linking -->

	<textarea id="editor_captioned_linked">
		<p>x</p>
		<figure id="w1" class="image">
			<a id="l1" href="http://foo"><img src="_assets/foo.png" alt="foo" /></a>
			<figcaption>caption1</figcaption>
		</figure>
	</textarea>
</body>