ophinode 0.0.1a5__py3-none-any.whl → 0.0.1a6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ophinode/__init__.py CHANGED
@@ -151,27 +151,38 @@ __all__ = [
151
151
  "H5",
152
152
  "H6",
153
153
  "HGroup",
154
+ "Hgroup",
154
155
  "Header",
155
156
  "Footer",
156
157
  "Address",
157
158
  "P",
158
159
  "HR",
160
+ "Hr",
159
161
  "Pre",
160
162
  "BlockQuote",
163
+ "Blockquote",
161
164
  "OL",
165
+ "Ol",
162
166
  "UL",
167
+ "Ul",
163
168
  "Menu",
164
169
  "LI",
170
+ "Li",
165
171
  "DL",
172
+ "Dl",
166
173
  "DT",
174
+ "Dt",
167
175
  "DD",
176
+ "Dd",
168
177
  "Figure",
169
178
  "FigCaption",
179
+ "Figcaption",
170
180
  "Main",
171
181
  "Search",
172
182
  "Div",
173
183
  "A",
174
184
  "EM",
185
+ "Em",
175
186
  "Strong",
176
187
  "Small",
177
188
  "S",
@@ -181,7 +192,9 @@ __all__ = [
181
192
  "Abbr",
182
193
  "Ruby",
183
194
  "RT",
195
+ "Rt",
184
196
  "RP",
197
+ "Rp",
185
198
  "Data",
186
199
  "Time",
187
200
  "Code",
@@ -195,16 +208,21 @@ __all__ = [
195
208
  "U",
196
209
  "Mark",
197
210
  "BDI",
211
+ "Bdi",
198
212
  "BDO",
213
+ "Bdo",
199
214
  "Span",
200
215
  "BR",
216
+ "Br",
201
217
  "WBR",
218
+ "Wbr",
202
219
  "Ins",
203
220
  "Del",
204
221
  "Picture",
205
222
  "Source",
206
223
  "Img",
207
224
  "IFrame",
225
+ "Iframe",
208
226
  "Embed",
209
227
  "Object",
210
228
  "Video",
@@ -215,30 +233,41 @@ __all__ = [
215
233
  "Table",
216
234
  "Caption",
217
235
  "ColGroup",
236
+ "Colgroup",
218
237
  "Column",
219
238
  "TBody",
239
+ "Tbody",
220
240
  "THead",
241
+ "Thead",
221
242
  "TFoot",
243
+ "Tfoot",
222
244
  "TR",
245
+ "Tr",
223
246
  "TD",
247
+ "Td",
224
248
  "TH",
249
+ "Th",
225
250
  "Form",
226
251
  "Label",
227
252
  "Input",
228
253
  "Button",
229
254
  "Select",
230
255
  "DataList",
256
+ "Datalist",
231
257
  "OptGroup",
258
+ "Optgroup",
232
259
  "Option",
233
260
  "Progress",
234
261
  "Meter",
235
262
  "FieldSet",
263
+ "Fieldset",
236
264
  "Legend",
237
265
  "Details",
238
266
  "Summary",
239
267
  "Dialog",
240
268
  "Script",
241
269
  "NoScript",
270
+ "Noscript",
242
271
  "Template",
243
272
  "Slot",
244
273
  "Canvas",
@@ -395,27 +424,38 @@ from .nodes.html import (
395
424
  H5,
396
425
  H6,
397
426
  HGroup,
427
+ Hgroup,
398
428
  Header,
399
429
  Footer,
400
430
  Address,
401
431
  P,
402
432
  HR,
433
+ Hr,
403
434
  Pre,
404
435
  BlockQuote,
436
+ Blockquote,
405
437
  OL,
438
+ Ol,
406
439
  UL,
440
+ Ul,
407
441
  Menu,
408
442
  LI,
443
+ Li,
409
444
  DL,
445
+ Dl,
410
446
  DT,
447
+ Dt,
411
448
  DD,
449
+ Dd,
412
450
  Figure,
413
451
  FigCaption,
452
+ Figcaption,
414
453
  Main,
415
454
  Search,
416
455
  Div,
417
456
  A,
418
457
  EM,
458
+ Em,
419
459
  Strong,
420
460
  Small,
421
461
  S,
@@ -425,7 +465,9 @@ from .nodes.html import (
425
465
  Abbr,
426
466
  Ruby,
427
467
  RT,
468
+ Rt,
428
469
  RP,
470
+ Rp,
429
471
  Data,
430
472
  Time,
431
473
  Code,
@@ -439,16 +481,21 @@ from .nodes.html import (
439
481
  U,
440
482
  Mark,
441
483
  BDI,
484
+ Bdi,
442
485
  BDO,
486
+ Bdo,
443
487
  Span,
444
488
  BR,
489
+ Br,
445
490
  WBR,
491
+ Wbr,
446
492
  Ins,
447
493
  Del,
448
494
  Picture,
449
495
  Source,
450
496
  Img,
451
497
  IFrame,
498
+ Iframe,
452
499
  Embed,
453
500
  Object,
454
501
  Video,
@@ -459,30 +506,41 @@ from .nodes.html import (
459
506
  Table,
460
507
  Caption,
461
508
  ColGroup,
509
+ Colgroup,
462
510
  Column,
463
511
  TBody,
512
+ Tbody,
464
513
  THead,
514
+ Thead,
465
515
  TFoot,
516
+ Tfoot,
466
517
  TR,
518
+ Tr,
467
519
  TD,
520
+ Td,
468
521
  TH,
522
+ Th,
469
523
  Form,
470
524
  Label,
471
525
  Input,
472
526
  Button,
473
527
  Select,
474
528
  DataList,
529
+ Datalist,
475
530
  OptGroup,
531
+ Optgroup,
476
532
  Option,
477
533
  Progress,
478
534
  Meter,
479
535
  FieldSet,
536
+ Fieldset,
480
537
  Legend,
481
538
  Details,
482
539
  Summary,
483
540
  Dialog,
484
541
  Script,
485
542
  NoScript,
543
+ Noscript,
486
544
  Template,
487
545
  Slot,
488
546
  Canvas,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ophinode
3
- Version: 0.0.1a5
3
+ Version: 0.0.1a6
4
4
  Summary: A static site generator written in Python
5
5
  Project-URL: Homepage, https://github.com/deflatedlatte/ophinode
6
6
  Project-URL: Issues, https://github.com/deflatedlatte/ophinode/issues
@@ -1,4 +1,4 @@
1
- ophinode/__init__.py,sha256=5eDhJKGY0UszGXfAc6vW_PIZGzUXWC1oO-_VQUbY3aM,8436
1
+ ophinode/__init__.py,sha256=-doLn4duK8O-uyP3rH6Th611ms96-1QoOH3riEGUZFo,9090
2
2
  ophinode/__main__.py,sha256=6i8Wu5lNm8FAaM1xNy46spy_laDdKmo2CmZVYYq4a-c,2210
3
3
  ophinode/constants.py,sha256=LHb4GrAVun3gO-e1jMMvvK2BN0aZ33kEandqzzEQYzk,592
4
4
  ophinode/exceptions.py,sha256=0T4Kuuy4aHa6jRCrIvNSomVCTf1JfECC_kwQzG-iIhk,351
@@ -7,7 +7,7 @@ ophinode/site.py,sha256=8E1l9iJ5dj4ksP8YYVnd5Mrf6mYjQ9aMM2XVy3fq64k,16775
7
7
  ophinode/nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  ophinode/nodes/base.py,sha256=SbjN8wjR77G3_8Lvvog4PriTq4v1WnnNr3nzAi0xMto,1004
9
9
  ophinode/nodes/html.py,sha256=FEnkFcjqD438hRsZWDMwSrkBrwP8C0wDvqsu-a111Jo,25132
10
- ophinode-0.0.1a5.dist-info/METADATA,sha256=AwaJwuwemruMOw-Nsyn-bUNFCYCp_IcHqBayXLSAc14,2409
11
- ophinode-0.0.1a5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
- ophinode-0.0.1a5.dist-info/licenses/LICENSE,sha256=bPdztUVhioHPZ6OKqBycopwMfGNB5BwVfRHV68sQoVU,1070
13
- ophinode-0.0.1a5.dist-info/RECORD,,
10
+ ophinode-0.0.1a6.dist-info/METADATA,sha256=OvUl-GWUhHm_VBSyJnihDgWOeEyy1wQMMmrJ66FOFFw,2409
11
+ ophinode-0.0.1a6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
+ ophinode-0.0.1a6.dist-info/licenses/LICENSE,sha256=bPdztUVhioHPZ6OKqBycopwMfGNB5BwVfRHV68sQoVU,1070
13
+ ophinode-0.0.1a6.dist-info/RECORD,,