Answered by:
place tab in paragraphs

Question
-
User1741069310 posted
<g class="gr_ gr_27 gr-alert gr_gramm gr_inline_cards gr_run_anim Style multiReplace" id="27" data-gr-id="27">Hi ,</g>
how could I place tab In HTML5 like as <g class="gr_ gr_26 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace" id="26" data-gr-id="26">follow</g> begin at ***?
***
A) File assembly and audit documentation
1) Why audit documentation is always so important for an audit engagement?
Answer: Audit documentation that meets the requirements of i) HKSA 230 Audit Documentation and ii) specific documentation requirements of other relevant HKSAs provides:
- Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are:
i) to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and
ii) To report on the financial statements, and communicate as required by the <g class="gr_ gr_24 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" id="24" data-gr-id="24">HKSAs</g>, in accordance with the auditor’s findings
- Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements.
source text as <g class="gr_ gr_109 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace" id="109" data-gr-id="109">follow</g>
A) File assembly and audit documentation 1) Why audit documentation is always so important for an audit engagement? Answer: Audit documentation that meets the requirements of i) HKSA 230 Audit Documentation and ii) specific documentation requirements of other relevant HKSAs provides: - Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are: i) to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and ii) To report on the financial statements, and communicate as required by the <g class="gr_ gr_98 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" id="98" data-gr-id="98">HKSAs</g>, in accordance with the auditor’s findings - Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements.
Thursday, February 14, 2019 9:17 AM
Answers
-
User-474980206 posted
you need to do the proper markup. you can set the indent of paragraph <p>. for the lists you should be using <ol> with a type or a <ul> with your own numbering.
<ol type="A"> <li> File assembly and audit documentation 1) Why audit documentation is always so important for an audit engagement? Answer: Audit documentation that meets the requirements of <ol type="a"> <li>HKSA 230 Audit Documentation and </li> <li>specific documentation requirements of other relevant HKSAs provides: - Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are: <ol type="i"> <li> to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and </li> <li> To report on the financial statements, and communicate as required by the HKSAs, in accordance with the auditor’s findings - Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements. </li> </ol> </li> </ol> </ol>
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Thursday, February 14, 2019 6:34 PM -
User839733648 posted
Hi fsze88,
But a way to no type attribute in some case (empty on line head) ?I suggest that you could use ul tag and set the ul's list-style-type as none.
Here is my testing code.
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style> ul { list-style-type: none; } </style> </head> <body> <ol type="A"> <li> File assembly and audit documentation <ul> <li> Why audit documentation is always so important for an audit engagement? </li> <li> Answer: Audit documentation that meets the requirements of </li> </ul> <ol type="a"> <li>HKSA 230 Audit Documentation and </li> <li> specific documentation requirements of other relevant HKSAs provides: <ul> <li> - Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are: </li> </ul> <ol type="i"> <li> to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and </li> <li> To report on the financial statements, and communicate as required by the HKSAs, in accordance with the auditor’s findings </li> </ol> <ul> <li> - Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements. </li> </ul> </li> </ol> </li> </ol> </body> </html>
result:
For more about this, you could refer to the official documentation: https://www.w3schools.com/tags/tag_ul.asp
Best Regards,
Jenifer
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Friday, February 15, 2019 6:13 AM -
User839733648 posted
Hi fsze88,
You could set font-weight: bold to the li and set font-weight: normal; to the contents you do not want it bold.
You may write code like:
<ol type="A"> <li style="font-weight: bold;"> <b> ) Component materiality in group audit</b></p> <br /> <ol type="1" style="font-weight: normal;"> <li> ) Under what circumstances should an auditor determine component materiality? <br /><br /> <b>Answer:</b> Component materiality is determined for those components whose financial information will be audited or reviewed as part of the group audit in accordance with paragraphs 26, 27(a) and 29 of HKSA 600 Special Considerations - Audits of Group Financial Statements (Including the Work of Component Auditors. Therefore, whether a component materiality should be determined depends on the type of work to be performed on components rather than the significance of the components. <br /><br /> </li> </ol> </li> </ol>
result:
Best Regards,
Jenifer
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Friday, February 15, 2019 7:42 AM
All replies
-
User753101303 posted
Hi,
You mean tab characters ? They are on a blank line or you want to indent the first line of a paragraph? "whitespaces" are usually collapsed in HTML because the page layout is achieved using HTML/CSS for example with https://www.w3schools.com/cssref/pr_text_text-indent.asp rather than by adding "whitespaces" in your actual content.
IMO you should see which purpose have those tabs and then see which CSS rule should be use to format your content this way.
Thursday, February 14, 2019 9:47 AM -
User-474980206 posted
you need to do the proper markup. you can set the indent of paragraph <p>. for the lists you should be using <ol> with a type or a <ul> with your own numbering.
<ol type="A"> <li> File assembly and audit documentation 1) Why audit documentation is always so important for an audit engagement? Answer: Audit documentation that meets the requirements of <ol type="a"> <li>HKSA 230 Audit Documentation and </li> <li>specific documentation requirements of other relevant HKSAs provides: - Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are: <ol type="i"> <li> to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and </li> <li> To report on the financial statements, and communicate as required by the HKSAs, in accordance with the auditor’s findings - Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements. </li> </ol> </li> </ol> </ol>
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Thursday, February 14, 2019 6:34 PM -
User1741069310 posted
good solution,
But a way to no type attribute in some case (empty on line head) ?
e.g.
Why audit documentation is always so important for an audit engagement?
Answer: Audit documentation that meets the requirements ofThursday, February 14, 2019 7:35 PM -
User839733648 posted
Hi fsze88,
But a way to no type attribute in some case (empty on line head) ?I suggest that you could use ul tag and set the ul's list-style-type as none.
Here is my testing code.
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style> ul { list-style-type: none; } </style> </head> <body> <ol type="A"> <li> File assembly and audit documentation <ul> <li> Why audit documentation is always so important for an audit engagement? </li> <li> Answer: Audit documentation that meets the requirements of </li> </ul> <ol type="a"> <li>HKSA 230 Audit Documentation and </li> <li> specific documentation requirements of other relevant HKSAs provides: <ul> <li> - Evidence of the auditor’s basis for a conclusion about the achievement of the auditor’s overall objectives, which are: </li> </ul> <ol type="i"> <li> to obtain reasonable assurance about whether the financial statements as a whole are free from material misstatement, whether due to fraud or error, thereby enabling the auditor to express an opinion on whether the financial statements are prepared, in all material respects, in accordance with the applicable financial reporting framework (e.g. HKFRS); and </li> <li> To report on the financial statements, and communicate as required by the HKSAs, in accordance with the auditor’s findings </li> </ol> <ul> <li> - Evidence that the audit was planned and performed in accordance with HKSAs and applicable legal and regulatory requirements. </li> </ul> </li> </ol> </li> </ol> </body> </html>
result:
For more about this, you could refer to the official documentation: https://www.w3schools.com/tags/tag_ul.asp
Best Regards,
Jenifer
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Friday, February 15, 2019 6:13 AM -
User1741069310 posted
How can I make bold A before words Component materiality in <g class="gr_ gr_35 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep" id="35" data-gr-id="35">group</g> audit
<ol type="A" >
<li><b> ) Component materiality in group audit</b></p>
<br/>
<ol type="1">
<li>
) Under what circumstances should an auditor determine component materiality?
<br/><br/>
<b>Answer:</b> Component materiality is determined for those components whose financial information will be audited or reviewed as part of the group audit in accordance with paragraphs 26, 27(a) and 29 of HKSA 600 Special Considerations - Audits of Group Financial Statements (Including the Work of Component Auditors. Therefore, whether a component materiality should be determined depends on the type of work to be performed on components rather than the significance of the components.
<br/><br/>
</li>
</ol>
</li>Friday, February 15, 2019 6:23 AM -
User839733648 posted
Hi fsze88,
You could set font-weight: bold to the li and set font-weight: normal; to the contents you do not want it bold.
You may write code like:
<ol type="A"> <li style="font-weight: bold;"> <b> ) Component materiality in group audit</b></p> <br /> <ol type="1" style="font-weight: normal;"> <li> ) Under what circumstances should an auditor determine component materiality? <br /><br /> <b>Answer:</b> Component materiality is determined for those components whose financial information will be audited or reviewed as part of the group audit in accordance with paragraphs 26, 27(a) and 29 of HKSA 600 Special Considerations - Audits of Group Financial Statements (Including the Work of Component Auditors. Therefore, whether a component materiality should be determined depends on the type of work to be performed on components rather than the significance of the components. <br /><br /> </li> </ol> </li> </ol>
result:
Best Regards,
Jenifer
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Friday, February 15, 2019 7:42 AM