page
Page
Represents a single page of report.
Source code in mkreports/page.py
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
|
__init__(path, report, code_layout='tabbed', code_name_only=False, add_bottom=True, md_defaults=None)
Initialize a page. Usually this is not used and instead a page is created using the page method on a report.
A page is also a context manager. If the context manager is active, code that is run in it is being tracked and added to the output with the specified layouts. The specified layout is used for all code tracking. Only one context-manager for a page can be active at a time.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
Path
|
Path to the page (absolute or relative to cwd). |
required |
report |
Report
|
The report object to which the page belongs. |
required |
code_layout |
Layouts
|
Type of layout for code-tracking. One of 'tabbed', 'top-o', 'top-c', 'bottom-o', 'bottom-c' or 'nocode'. |
'tabbed'
|
code_name_only |
bool
|
For code files, should only the name be used instead of the path. |
False
|
add_bottom |
bool
|
Should new entries be added at the bottom? At the top used for IPython. |
True
|
md_defaults |
Optional[Dict[str, Dict[str, Any]]
|
A dictionary mapping the names md objects (accessed from the proxy) to default keywords included when they are being called. |
None
|
Source code in mkreports/page.py
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
_add_to_page(item)
Read the frontmatter and merge it with the additional settings.
The reason that we do this separately is a minor issue in the frontmatter library, that filters the newlines at the end of the file. https://github.com/eyeseast/python-frontmatter/issues/87
Source code in mkreports/page.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 |
|
add(item)
Add a MdObj to the page.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item |
Union[MdObj, Text]
|
Object to add to the page |
required |
Returns:
Name | Type | Description |
---|---|---|
Page |
'Page'
|
The page itself. |
Source code in mkreports/page.py
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
|
clear()
Clear the page markdown file and the generated assets directory.
Source code in mkreports/page.py
266 267 268 269 |
|
ctx(layout=None, name_only=None, add_bottom=None)
Sets the next context to be used. Only counts for the next tracking context.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
layout |
Optional[Layouts]
|
The layout to use. One of 'tabbed', 'top-o', 'top-c', 'bottom-o', 'bottom-c' or 'nocode'. |
None
|
name_only |
Optional[bool]
|
In the code block, should only the name of the file be used. |
None
|
add_bottom |
Optional[bool]
|
Is new output added to the bottom or top. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Page |
'Page'
|
The page object, but with the new CodeContext object set. |
Source code in mkreports/page.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
|
md()
A proxy for the 'md' submodule.
Source code in mkreports/page.py
344 345 346 347 348 349 |
|
nav_entry()
Returns:
Type | Description |
---|---|
NavEntry
|
NavEntry for this page. |
Source code in mkreports/page.py
244 245 246 247 248 249 250 251 252 253 254 255 |
|
page_info()
Returns:
Name | Type | Description |
---|---|---|
PageInfo | An object with info about the page used in markdown objects. |
Source code in mkreports/page.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
|
path()
Returns:
Name | Type | Description |
---|---|---|
Path |
Path
|
Absolute path to the page. |
Source code in mkreports/page.py
226 227 228 229 230 231 232 233 |
|
rel_path()
Returns:
Name | Type | Description |
---|---|---|
Path |
Path
|
Relative to the docs_dir of the report. |
Source code in mkreports/page.py
235 236 237 238 239 240 241 242 |
|
store_path()
Returns:
Name | Type | Description |
---|---|---|
Path |
Path
|
Location of the path for object storage for the page. |
Source code in mkreports/page.py
257 258 259 260 261 262 263 264 |
|